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
72b85029
Kaydet (Commit)
72b85029
authored
Nis 18, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#11182: remove the unused and undocumented pydoc.Scanner class. Patch by Martin Morrison.
üst
f4764055
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
24 deletions
+4
-24
pydoc.py
Lib/pydoc.py
+0
-24
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/pydoc.py
Dosyayı görüntüle @
72b85029
...
...
@@ -1984,30 +1984,6 @@ for modules whose name or summary contain the string "spam".
help
=
Helper
()
class
Scanner
:
"""A generic tree iterator."""
def
__init__
(
self
,
roots
,
children
,
descendp
):
self
.
roots
=
roots
[:]
self
.
state
=
[]
self
.
children
=
children
self
.
descendp
=
descendp
def
next
(
self
):
if
not
self
.
state
:
if
not
self
.
roots
:
return
None
root
=
self
.
roots
.
pop
(
0
)
self
.
state
=
[(
root
,
self
.
children
(
root
))]
node
,
children
=
self
.
state
[
-
1
]
if
not
children
:
self
.
state
.
pop
()
return
self
.
next
()
child
=
children
.
pop
(
0
)
if
self
.
descendp
(
child
):
self
.
state
.
append
((
child
,
self
.
children
(
child
)))
return
child
class
ModuleScanner
:
"""An interruptible scanner that searches module synopses."""
...
...
Misc/ACKS
Dosyayı görüntüle @
72b85029
...
...
@@ -848,6 +848,7 @@ Ross Moore
Ben Morgan
Derek Morr
James A Morrison
Martin Morrison
Derek McTavish Mounce
Alessandro Moura
Pablo Mouzo
...
...
Misc/NEWS
Dosyayı görüntüle @
72b85029
...
...
@@ -45,6 +45,9 @@ Core and Builtins
Library
-------
- Issue #11182: remove the unused and undocumented pydoc.Scanner class.
Patch by Martin Morrison.
- Issue #17741: Add ElementTree.IncrementalParser, an event-driven parser
for non-blocking applications.
...
...
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