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
c060b0e7
Kaydet (Commit)
c060b0e7
authored
Tem 02, 2008
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 3190: pydoc now hides module __package__ attributes
üst
70c32890
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
pydoc.py
Lib/pydoc.py
+3
-2
test_pydoc.py
Lib/test/test_pydoc.py
+0
-2
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/pydoc.py
Dosyayı görüntüle @
c060b0e7
...
...
@@ -160,8 +160,9 @@ def _split_list(s, predicate):
def
visiblename
(
name
,
all
=
None
):
"""Decide whether to show documentation on a variable."""
# Certain special names are redundant.
if
name
in
(
'__builtins__'
,
'__doc__'
,
'__file__'
,
'__path__'
,
'__module__'
,
'__name__'
,
'__slots__'
):
return
0
_hidden_names
=
(
'__builtins__'
,
'__doc__'
,
'__file__'
,
'__path__'
,
'__module__'
,
'__name__'
,
'__slots__'
,
'__package__'
)
if
name
in
_hidden_names
:
return
0
# Private names are hidden, but special names are displayed.
if
name
.
startswith
(
'__'
)
and
name
.
endswith
(
'__'
):
return
1
if
all
is
not
None
:
...
...
Lib/test/test_pydoc.py
Dosyayı görüntüle @
c060b0e7
...
...
@@ -57,7 +57,6 @@ FUNCTIONS
DATA
__author__ = 'Benjamin Peterson'
__credits__ = 'Nobody'
__package__ = None
__version__ = '1.2.3.4'
VERSION
...
...
@@ -146,7 +145,6 @@ war</tt></dd></dl>
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
<td width="100
%%
"><strong>__author__</strong> = 'Benjamin Peterson'<br>
<strong>__credits__</strong> = 'Nobody'<br>
<strong>__package__</strong> = None<br>
<strong>__version__</strong> = '1.2.3.4'</td></tr></table><p>
<table width="100
%%
" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#7799ee">
...
...
Misc/NEWS
Dosyayı görüntüle @
c060b0e7
...
...
@@ -33,6 +33,9 @@ Core and Builtins
Library
-------
- Issue #3190: Pydoc now hides the automatic module attribute __package__ (the
handling is now the same as that of other special attributes like __name__).
- Issue #2885 (partial): The urllib.urlopen() function has been deprecated for
removal in Python 3.0 in favor of urllib2.urlopen().
...
...
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