Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
145ab1ce
Kaydet (Commit)
145ab1ce
authored
May 19, 1998
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#Documentation and comment typos patch given by Michael Ernst. More
#of his patches to follow.
üst
e35c6015
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
python-mode.el
Misc/python-mode.el
+17
-17
No files found.
Misc/python-mode.el
Dosyayı görüntüle @
145ab1ce
...
...
@@ -64,7 +64,7 @@
;; FOR MORE INFORMATION:
;; Please see <http://www.python.org/
ftp/emacs/pmdetails.html
> for the
;; Please see <http://www.python.org/
emacs/python-mode/
> for the
;; latest information and compatibility notes.
;; BUG REPORTING:
...
...
@@ -212,7 +212,7 @@ if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
When t, lines that begin with a single `#' are a hint to subsequent
line indentation. If the previous line is such a comment line (as
opposed to one that starts with `py-block-comment-prefix'), then it
'
s
opposed to one that starts with `py-block-comment-prefix'), then its
indentation is used as a hint for this line's indentation. Lines that
begin with `py-block-comment-prefix' are ignored for indentation
purposes.
...
...
@@ -554,8 +554,8 @@ Currently-active file is at the head of the list.")
(
defvar
python-mode-hook
nil
"*Hook called by `python-mode'."
)
;;
i
n previous version of python-mode.el, the hook was incorrectly
;; called py-mode-hook, and was not defvar'd.
d
eprecate its use.
;;
I
n previous version of python-mode.el, the hook was incorrectly
;; called py-mode-hook, and was not defvar'd.
D
eprecate its use.
(
and
(
fboundp
'make-obsolete-variable
)
(
make-obsolete-variable
'py-mode-hook
'python-mode-hook
))
...
...
@@ -824,7 +824,7 @@ the function \\[imenu-example--create-python-index].
It works recursively by looking for all definitions at the current
indention level. When it finds one, it adds it to the alist. If it
finds a definition at a greater indentation level, it removes the
previous definition from the alist. In it
'
s place it adds all
previous definition from the alist. In its place it adds all
definitions found at the next indentation level. When it finds a
definition that is less indented then the current level, it retuns the
alist it has created thus far.
...
...
@@ -991,7 +991,7 @@ py-beep-if-tab-change\t\tring the bell if tab-width is changed"
;; Now do the automagical guessing
(
if
py-smart-indentation
(
let
((
offset
py-indent-offset
))
;; Its okay if this fails to guess a good value
;; It
'
s okay if this fails to guess a good value
(
if
(
and
(
py-safe
(
py-guess-indent-offset
))
(
<=
py-indent-offset
8
)
(
>=
py-indent-offset
2
))
...
...
@@ -1047,7 +1047,7 @@ Electric behavior is inhibited inside a string or comment."
(
setq
outdent
py-indent-offset
))
;; Don't indent, only outdent. This assumes that any lines that
;; are already outdented relative to py-compute-indentation were
;; put there on purpose. Its highly annoying to have `:' indent
;; put there on purpose. It
'
s highly annoying to have `:' indent
;; for you. Use TAB, C-c C-l or C-c C-r to adjust. TBD: Is
;; there a better way to determine this???
(
if
(
<
(
current-indentation
)
indent
)
nil
...
...
@@ -1300,7 +1300,7 @@ is inserted at the end. See also the command `py-clear-queue'."
(
file
(
expand-file-name
temp
py-temp-directory
)))
(
write-region
start
end
file
nil
'nomsg
)
(
cond
;; always run the code in it
'
s own asynchronous subprocess
;; always run the code in its own asynchronous subprocess
(
async
(
let*
((
buf
(
generate-new-buffer-name
py-output-buffer
)))
(
start-process
"Python"
buf
py-python-command
"-u"
file
)
...
...
@@ -1660,7 +1660,7 @@ the new line indented."
;; purposes.
;; Are we looking at a comment-only line which is *not* an
;; indenting comment line? If so, we assume that its been
;; indenting comment line? If so, we assume that it
'
s been
;; placed at the desired indentation, so leave it alone.
;; Indenting comment lines are aligned as statements down
;; below.
...
...
@@ -2609,7 +2609,7 @@ local bindings to py-newline-and-indent."))
(
beginning-of-line
)
;; In XEmacs, we have a much better way to test for whether
;; we're in a triple-quoted string or not. Emacs does not
;; have this built-in function, which is it
'
s loss because
;; have this built-in function, which is its loss because
;; without scanning from the beginning of the buffer, there's
;; no accurate way to determine this otherwise.
(
if
(
not
(
fboundp
'buffer-syntactic-context
))
...
...
@@ -2748,9 +2748,9 @@ local bindings to py-newline-and-indent."))
(
py-mark-block
nil
'just-move
)
(
py-goto-beyond-final-line
)))
;;
g
o to start of first statement (not blank or comment or
;; continuation line) at or preceding point.
r
eturns t if there is
;; one, else nil
;;
G
o to start of first statement (not blank or comment or
;; continuation line) at or preceding point.
R
eturns t if there is
;; one, else nil
.
(
defun
py-goto-statement-at-or-above
()
(
py-goto-initial-line
)
(
if
(
looking-at
py-blank-or-comment-re
)
...
...
@@ -2762,9 +2762,9 @@ local bindings to py-newline-and-indent."))
nil
)
t
))
;;
g
o to start of first statement (not blank or comment or
;; continuation line) following the statement containing point
returns
;;
t if there is one, else nil
;;
G
o to start of first statement (not blank or comment or
;; continuation line) following the statement containing point
.
;;
Returns t if there is one, else nil.
(
defun
py-goto-statement-below
()
(
beginning-of-line
)
(
let
((
start
(
point
)))
...
...
@@ -2777,7 +2777,7 @@ local bindings to py-newline-and-indent."))
(
progn
(
goto-char
start
)
nil
)
t
)))
;;
g
o to start of statement, at or preceding point, starting with
;;
G
o to start of statement, at or preceding point, starting with
;; keyword KEY. Skips blank lines and non-indenting comments upward
;; first. If that statement starts with KEY, done, else go back to
;; first enclosing block starting with KEY. If successful, leaves
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment