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
1d5f9884
Kaydet (Commit)
1d5f9884
authored
Eki 28, 1998
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
(py-imenu-method-regexp): Fix suggested by Daniel Calvelo to
generalize the matching of function arguments.
üst
6839d3af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
python-mode.el
Misc/python-mode.el
+6
-2
No files found.
Misc/python-mode.el
Dosyayı görüntüle @
1d5f9884
...
...
@@ -87,7 +87,7 @@ of the Custom library from:
See the Python Mode home page for details:
<http://www.python.org/
ftp/emacs/
>
<http://www.python.org/
emacs/python-mode
>
"
)))
...
...
@@ -708,7 +708,8 @@ package. Note that the latest X/Emacs releases contain this package.")
"\\(def[ \t]+"
; function definitions start with def
"\\([a-zA-Z0-9_]+\\)"
; name is here
; function arguments...
"[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
"[ \t]*(\\([^:#]*\\))"
"\\)"
; end of def
"[ \t]*:"
; and then the :
"\\)"
; >>methods and functions<<
...
...
@@ -766,6 +767,9 @@ of how this works."
py-imenu-method-arg-parens
py-imenu-method-no-arg-parens
))
(
goto-char
(
point-min
))
;; Warning: When the buffer has no classes or functions, this will
;; return nil, which seems proper according to the Imenu API, but
;; causes an error in the XEmacs port of Imenu. Sigh.
(
py-imenu-create-index-engine
nil
))
(
defun
py-imenu-create-index-engine
(
&optional
start-indent
)
...
...
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