;;; python-el-expansions.el --- Python-specific expansions for expand-region
;; Copyright (C) 2012 Ivan Andrus
;; Authors: Ivan Andrus, Felix Geller, @edmccard
;; Based on js-mode-expansions by: Magnar Sveen <magnars@gmail.com>
;; Keywords: marking region python
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; For python.el included with GNU Emacs
;; - Mark functionality taken from python.el:
;; - `python-mark-block'
;; - Additions implemented here:
;; - `er/mark-python-statement'
;; - `er/mark-inside-python-string'
;; - `er/mark-outside-python-string'
;; - Supports multi-line strings
;; There is no need for a er/mark-python-defun since
;; er/mark-python-block will mark it
;; Feel free to contribute any other expansions for Python at
;;
;; https://github.com/magnars/expand-region.el
;;; Code:
;; python-el-expansions.el ends here