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
6dcfa388
Kaydet (Commit)
6dcfa388
authored
Nis 12, 2001
tarafından
Ka-Ping Yee
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix call to ModuleScanner from GUI search interface.
Fix handling of unbound top-level methods.
üst
47f11ce5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
pydoc.py
Lib/pydoc.py
+10
-8
No files found.
Lib/pydoc.py
Dosyayı görüntüle @
6dcfa388
...
...
@@ -580,8 +580,8 @@ TT { font-family: lucida console, lucida typewriter, courier }
note
=
''
skipdocs
=
0
if
inspect
.
ismethod
(
object
):
imclass
=
object
.
im_class
if
cl
:
imclass
=
object
.
im_class
if
imclass
is
not
cl
:
url
=
'
%
s.html#
%
s-
%
s'
%
(
imclass
.
__module__
,
imclass
.
__name__
,
name
)
...
...
@@ -589,9 +589,10 @@ TT { font-family: lucida console, lucida typewriter, courier }
url
,
classname
(
imclass
,
mod
))
skipdocs
=
1
else
:
note
=
(
object
.
im_self
and
' method of
%
s instance'
+
object
.
im_self
.
__class__
or
' unbound
%
s method'
%
object
.
im_class
.
__name__
)
inst
=
object
.
im_self
note
=
(
inst
and
' method of
%
s instance'
%
classname
(
inst
.
__class__
,
mod
)
or
' unbound
%
s method'
%
classname
(
imclass
,
mod
))
object
=
object
.
im_func
if
name
==
realname
:
...
...
@@ -847,9 +848,10 @@ class TextDoc(Doc):
note
=
' from '
+
classname
(
imclass
,
mod
)
skipdocs
=
1
else
:
note
=
(
object
.
im_self
and
' method of
%
s instance'
+
object
.
im_self
.
__class__
or
' unbound
%
s method'
%
classname
(
imclass
,
mod
))
inst
=
object
.
im_self
note
=
(
inst
and
' method of
%
s instance'
%
classname
(
inst
.
__class__
,
mod
)
or
' unbound
%
s method'
%
classname
(
imclass
,
mod
))
object
=
object
.
im_func
if
name
==
realname
:
...
...
@@ -1699,7 +1701,7 @@ def gui():
self
.
scanner
.
quit
=
1
self
.
scanner
=
ModuleScanner
()
threading
.
Thread
(
target
=
self
.
scanner
.
run
,
args
=
(
key
,
self
.
update
,
self
.
done
))
.
start
()
args
=
(
self
.
update
,
key
,
self
.
done
))
.
start
()
def
update
(
self
,
path
,
modname
,
desc
):
if
modname
[
-
9
:]
==
'.__init__'
:
...
...
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