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
5de3278b
Kaydet (Commit)
5de3278b
authored
Ock 18, 2014
tarafından
Stefan Krah
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix test failures (--without-doc-strings).
üst
bbf18bee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
test_pydoc.py
Lib/test/test_pydoc.py
+3
-1
No files found.
Lib/test/test_pydoc.py
Dosyayı görüntüle @
5de3278b
...
@@ -21,7 +21,7 @@ from test.script_helper import assert_python_ok
...
@@ -21,7 +21,7 @@ from test.script_helper import assert_python_ok
from
test.support
import
(
from
test.support
import
(
TESTFN
,
rmtree
,
TESTFN
,
rmtree
,
reap_children
,
reap_threads
,
captured_output
,
captured_stdout
,
reap_children
,
reap_threads
,
captured_output
,
captured_stdout
,
captured_stderr
,
unlink
captured_stderr
,
unlink
,
requires_docstrings
)
)
from
test
import
pydoc_mod
from
test
import
pydoc_mod
...
@@ -689,6 +689,8 @@ class TestDescriptions(unittest.TestCase):
...
@@ -689,6 +689,8 @@ class TestDescriptions(unittest.TestCase):
self
.
assertIsNone
(
pydoc
.
locate
(
name
))
self
.
assertIsNone
(
pydoc
.
locate
(
name
))
self
.
assertRaises
(
ImportError
,
pydoc
.
render_doc
,
name
)
self
.
assertRaises
(
ImportError
,
pydoc
.
render_doc
,
name
)
@requires_docstrings
def
test_builtin_signatures
(
self
):
# test producing signatures from builtins
# test producing signatures from builtins
stat_sig
=
pydoc
.
render_doc
(
os
.
stat
)
stat_sig
=
pydoc
.
render_doc
(
os
.
stat
)
self
.
assertEqual
(
pydoc
.
plain
(
stat_sig
)
.
splitlines
()[
2
],
self
.
assertEqual
(
pydoc
.
plain
(
stat_sig
)
.
splitlines
()[
2
],
...
...
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