diff options
| author | Glenn Morris | 2012-08-15 09:29:11 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-08-15 09:29:11 -0700 |
| commit | 2a1e24765bc3de7bf72e7117893307f6f6c441be (patch) | |
| tree | 95cbfdc4e94f4f7c899e2ceea99b771928e4937a /lisp/progmodes/python.el | |
| parent | eb424fe3d660eebd9b74dd5d2875e2e4b7b3307f (diff) | |
| download | emacs-2a1e24765bc3de7bf72e7117893307f6f6c441be.tar.gz emacs-2a1e24765bc3de7bf72e7117893307f6f6c441be.zip | |
Replace version 24.2 with 24.3 where appropriate (hopefully)
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 90908c80f1b..601850ed0fb 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -378,14 +378,14 @@ The type returned can be `comment', `string' or `paren'." | |||
| 378 | (nth 8 (syntax-ppss))) | 378 | (nth 8 (syntax-ppss))) |
| 379 | 379 | ||
| 380 | (define-obsolete-function-alias | 380 | (define-obsolete-function-alias |
| 381 | 'python-info-ppss-context #'python-syntax-context "24.2") | 381 | 'python-info-ppss-context #'python-syntax-context "24.3") |
| 382 | 382 | ||
| 383 | (define-obsolete-function-alias | 383 | (define-obsolete-function-alias |
| 384 | 'python-info-ppss-context-type #'python-syntax-context-type "24.2") | 384 | 'python-info-ppss-context-type #'python-syntax-context-type "24.3") |
| 385 | 385 | ||
| 386 | (define-obsolete-function-alias | 386 | (define-obsolete-function-alias |
| 387 | 'python-info-ppss-comment-or-string-p | 387 | 'python-info-ppss-comment-or-string-p |
| 388 | #'python-syntax-comment-or-string-p "24.2") | 388 | #'python-syntax-comment-or-string-p "24.3") |
| 389 | 389 | ||
| 390 | (defvar python-font-lock-keywords | 390 | (defvar python-font-lock-keywords |
| 391 | ;; Keywords | 391 | ;; Keywords |
| @@ -588,10 +588,10 @@ It makes underscores and dots word constituent chars.") | |||
| 588 | :safe 'booleanp) | 588 | :safe 'booleanp) |
| 589 | 589 | ||
| 590 | (define-obsolete-variable-alias | 590 | (define-obsolete-variable-alias |
| 591 | 'python-indent 'python-indent-offset "24.2") | 591 | 'python-indent 'python-indent-offset "24.3") |
| 592 | 592 | ||
| 593 | (define-obsolete-variable-alias | 593 | (define-obsolete-variable-alias |
| 594 | 'python-guess-indent 'python-indent-guess-indent-offset "24.2") | 594 | 'python-guess-indent 'python-indent-guess-indent-offset "24.3") |
| 595 | 595 | ||
| 596 | (defvar python-indent-current-level 0 | 596 | (defvar python-indent-current-level 0 |
| 597 | "Current indentation level `python-indent-line-function' is using.") | 597 | "Current indentation level `python-indent-line-function' is using.") |
| @@ -1808,13 +1808,13 @@ there for compatibility with CEDET.") | |||
| 1808 | (get-buffer-process proc-buffer-name))) | 1808 | (get-buffer-process proc-buffer-name))) |
| 1809 | 1809 | ||
| 1810 | (define-obsolete-function-alias | 1810 | (define-obsolete-function-alias |
| 1811 | 'python-proc 'python-shell-internal-get-or-create-process "24.2") | 1811 | 'python-proc 'python-shell-internal-get-or-create-process "24.3") |
| 1812 | 1812 | ||
| 1813 | (define-obsolete-variable-alias | 1813 | (define-obsolete-variable-alias |
| 1814 | 'python-buffer 'python-shell-internal-buffer "24.2") | 1814 | 'python-buffer 'python-shell-internal-buffer "24.3") |
| 1815 | 1815 | ||
| 1816 | (define-obsolete-variable-alias | 1816 | (define-obsolete-variable-alias |
| 1817 | 'python-preoutput-result 'python-shell-internal-last-output "24.2") | 1817 | 'python-preoutput-result 'python-shell-internal-last-output "24.3") |
| 1818 | 1818 | ||
| 1819 | (defun python-shell-send-string (string &optional process msg) | 1819 | (defun python-shell-send-string (string &optional process msg) |
| 1820 | "Send STRING to inferior Python PROCESS. | 1820 | "Send STRING to inferior Python PROCESS. |
| @@ -1876,10 +1876,10 @@ Returns the output. See `python-shell-send-string-no-output'." | |||
| 1876 | (python-shell-internal-get-or-create-process) nil))) | 1876 | (python-shell-internal-get-or-create-process) nil))) |
| 1877 | 1877 | ||
| 1878 | (define-obsolete-function-alias | 1878 | (define-obsolete-function-alias |
| 1879 | 'python-send-receive 'python-shell-internal-send-string "24.2") | 1879 | 'python-send-receive 'python-shell-internal-send-string "24.3") |
| 1880 | 1880 | ||
| 1881 | (define-obsolete-function-alias | 1881 | (define-obsolete-function-alias |
| 1882 | 'python-send-string 'python-shell-internal-send-string "24.2") | 1882 | 'python-send-string 'python-shell-internal-send-string "24.3") |
| 1883 | 1883 | ||
| 1884 | (defun python-shell-send-region (start end) | 1884 | (defun python-shell-send-region (start end) |
| 1885 | "Send the region delimited by START and END to inferior Python process." | 1885 | "Send the region delimited by START and END to inferior Python process." |
| @@ -2369,7 +2369,7 @@ the if condition." | |||
| 2369 | :safe 'booleanp) | 2369 | :safe 'booleanp) |
| 2370 | 2370 | ||
| 2371 | (define-obsolete-variable-alias | 2371 | (define-obsolete-variable-alias |
| 2372 | 'python-use-skeletons 'python-skeleton-autoinsert "24.2") | 2372 | 'python-use-skeletons 'python-skeleton-autoinsert "24.3") |
| 2373 | 2373 | ||
| 2374 | (defvar python-skeleton-available '() | 2374 | (defvar python-skeleton-available '() |
| 2375 | "Internal list of available skeletons.") | 2375 | "Internal list of available skeletons.") |