diff options
| author | Fabián Ezequiel Gallina | 2012-05-17 00:03:45 -0300 |
|---|---|---|
| committer | Fabián Ezequiel Gallina | 2012-05-17 00:03:45 -0300 |
| commit | 09268a54ae6f690d0fcfbf8aeb02710b14248d6b (patch) | |
| tree | 0e124cda57a90371bb145c6d01c23f128f3c15aa /lisp/progmodes/python.el | |
| parent | bd982677367c3d441cea1d1c60cb3ad0bc3f263b (diff) | |
| download | emacs-09268a54ae6f690d0fcfbf8aeb02710b14248d6b.tar.gz emacs-09268a54ae6f690d0fcfbf8aeb02710b14248d6b.zip | |
Copyright information update
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 2da5337b8c5..c41d99bdf81 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -1,28 +1,28 @@ | |||
| 1 | ;;; python.el --- Python's flying circus support for Emacs | 1 | ;;; python.el --- Python's flying circus support for Emacs |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2010, 2011 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Fabián E. Gallina <fabian@anue.biz> | 5 | ;; Author: Fabián E. Gallina <fabian@anue.biz> |
| 6 | ;; URL: https://github.com/fgallina/python.el | 6 | ;; URL: https://github.com/fgallina/python.el |
| 7 | ;; Version: 0.23.1 | 7 | ;; Version: 0.24.2 |
| 8 | ;; Maintainer: FSF | 8 | ;; Maintainer: FSF |
| 9 | ;; Created: Jul 2010 | 9 | ;; Created: Jul 2010 |
| 10 | ;; Keywords: languages | 10 | ;; Keywords: languages |
| 11 | 11 | ||
| 12 | ;; This file is NOT part of GNU Emacs. | 12 | ;; This file is part of GNU Emacs. |
| 13 | 13 | ||
| 14 | ;; python.el is free software: you can redistribute it and/or modify | 14 | ;; GNU Emacs is free software: you can redistribute it and/or modify |
| 15 | ;; it under the terms of the GNU General Public License as published by | 15 | ;; it under the terms of the GNU General Public License as published |
| 16 | ;; the Free Software Foundation, either version 3 of the License, or | 16 | ;; by the Free Software Foundation, either version 3 of the License, |
| 17 | ;; (at your option) any later version. | 17 | ;; or (at your option) any later version. |
| 18 | 18 | ||
| 19 | ;; python.el is distributed in the hope that it will be useful, | 19 | ;; GNU Emacs is distributed in the hope that it will be useful, but |
| 20 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | 20 | ;; WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 21 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 22 | ;; GNU General Public License for more details. | 22 | ;; General Public License for more details. |
| 23 | 23 | ||
| 24 | ;; You should have received a copy of the GNU General Public License | 24 | ;; You should have received a copy of the GNU General Public License |
| 25 | ;; along with python.el. If not, see <http://www.gnu.org/licenses/>. | 25 | ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
| 26 | 26 | ||
| 27 | ;;; Commentary: | 27 | ;;; Commentary: |
| 28 | 28 | ||
| @@ -30,10 +30,6 @@ | |||
| 30 | ;; indentation bits extracted from original Dave Love's python.el | 30 | ;; indentation bits extracted from original Dave Love's python.el |
| 31 | ;; found in GNU/Emacs. | 31 | ;; found in GNU/Emacs. |
| 32 | 32 | ||
| 33 | ;; While it probably has less features than Dave Love's python.el and | ||
| 34 | ;; PSF's python-mode.el it provides the main stuff you'll need while | ||
| 35 | ;; keeping it simple :) | ||
| 36 | |||
| 37 | ;; Implements Syntax highlighting, Indentation, Movement, Shell | 33 | ;; Implements Syntax highlighting, Indentation, Movement, Shell |
| 38 | ;; interaction, Shell completion, Shell virtualenv support, Pdb | 34 | ;; interaction, Shell completion, Shell virtualenv support, Pdb |
| 39 | ;; tracking, Symbol completion, Skeletons, FFAP, Code Check, Eldoc, | 35 | ;; tracking, Symbol completion, Skeletons, FFAP, Code Check, Eldoc, |