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
43415ba5
Kaydet (Commit)
43415ba5
authored
Kas 07, 2015
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18010: Fix pydoc GUI search to handle package exceptions
üst
c157347d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
pydoc.py
Lib/pydoc.py
+4
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/pydoc.py
Dosyayı görüntüle @
43415ba5
...
...
@@ -2244,8 +2244,11 @@ def gui():
if
self
.
scanner
:
self
.
scanner
.
quit
=
1
self
.
scanner
=
ModuleScanner
()
def
onerror
(
modname
):
pass
threading
.
Thread
(
target
=
self
.
scanner
.
run
,
args
=
(
self
.
update
,
key
,
self
.
done
))
.
start
()
args
=
(
self
.
update
,
key
,
self
.
done
),
kwargs
=
dict
(
onerror
=
onerror
))
.
start
()
def
update
(
self
,
path
,
modname
,
desc
):
if
modname
[
-
9
:]
==
'.__init__'
:
...
...
Misc/NEWS
Dosyayı görüntüle @
43415ba5
...
...
@@ -46,6 +46,9 @@ Core and Builtins
Library
-------
- Issue #18010: Fix the pydoc GUI'
s
search
function
to
handle
exceptions
from
importing
packages
.
-
Issue
#
25515
:
Always
use
os
.
urandom
as
a
source
of
randomness
in
uuid
.
uuid4
.
-
Issue
#
21827
:
Fixed
textwrap
.
dedent
()
for
the
case
when
largest
common
...
...
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