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
aeb2e829
Kaydet (Commit)
aeb2e829
authored
Mar 31, 2010
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix #8225. xml.etree was displaying an incorrect link when viewed in help.
üst
b102ddad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
pydoc.py
Lib/pydoc.py
+2
-1
test_pydoc.py
Lib/test/test_pydoc.py
+6
-0
No files found.
Lib/pydoc.py
Dosyayı görüntüle @
aeb2e829
...
...
@@ -356,7 +356,8 @@ class Doc:
'marshal'
,
'posix'
,
'signal'
,
'sys'
,
'thread'
,
'zipimport'
)
or
(
file
.
startswith
(
basedir
)
and
not
file
.
startswith
(
os
.
path
.
join
(
basedir
,
'site-packages'
))))):
not
file
.
startswith
(
os
.
path
.
join
(
basedir
,
'site-packages'
))))
and
object
.
__name__
not
in
(
'xml.etree'
)):
if
docloc
.
startswith
(
"http://"
):
docloc
=
"
%
s/
%
s"
%
(
docloc
.
rstrip
(
"/"
),
object
.
__name__
)
else
:
...
...
Lib/test/test_pydoc.py
Dosyayı görüntüle @
aeb2e829
...
...
@@ -7,6 +7,7 @@ import re
import
pydoc
import
inspect
import
unittest
import
xml.etree
import
test.test_support
from
contextlib
import
contextmanager
from
test.test_support
import
(
...
...
@@ -244,6 +245,11 @@ class PyDocDocTest(unittest.TestCase):
print_diffs
(
expected_text
,
result
)
self
.
fail
(
"outputs are not equal, see diff above"
)
def
test_issue8225
(
self
):
# Test issue8225 to ensure no doc link appears for xml.etree
result
,
doc_loc
=
get_pydoc_text
(
xml
.
etree
)
self
.
assertEqual
(
doc_loc
,
""
,
"MODULE DOCS incorrectly includes a link"
)
def
test_not_here
(
self
):
missing_module
=
"test.i_am_not_here"
result
=
run_pydoc
(
missing_module
)
...
...
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