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
1abd7086
Kaydet (Commit)
1abd7086
authored
Ock 16, 2014
tarafından
Larry Hastings
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20226: Added tests for new features and regressions.
üst
2a727916
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
test_pydoc.py
Lib/test/test_pydoc.py
+5
-0
clinic_test.py
Tools/clinic/clinic_test.py
+15
-0
No files found.
Lib/test/test_pydoc.py
Dosyayı görüntüle @
1abd7086
...
...
@@ -689,6 +689,11 @@ class TestDescriptions(unittest.TestCase):
self
.
assertIsNone
(
pydoc
.
locate
(
name
))
self
.
assertRaises
(
ImportError
,
pydoc
.
render_doc
,
name
)
# test producing signatures from builtins
stat_sig
=
pydoc
.
render_doc
(
os
.
stat
)
self
.
assertEqual
(
pydoc
.
plain
(
stat_sig
)
.
splitlines
()[
2
],
'stat(path, *, dir_fd=None, follow_symlinks=True)'
)
@unittest.skipUnless
(
threading
,
'Threading required for this test.'
)
class
PydocServerTest
(
unittest
.
TestCase
):
...
...
Tools/clinic/clinic_test.py
Dosyayı görüntüle @
1abd7086
...
...
@@ -9,6 +9,7 @@ from clinic import DSLParser
import
collections
import
inspect
from
test
import
support
import
sys
import
unittest
from
unittest
import
TestCase
...
...
@@ -277,6 +278,20 @@ class ClinicParserTest(TestCase):
p
=
function
.
parameters
[
'follow_symlinks'
]
self
.
assertEqual
(
True
,
p
.
default
)
def
test_param_with_continuations
(
self
):
function
=
self
.
parse_function
(
"module os
\n
os.access
\n
follow_symlinks:
\\\n
bool
\\\n
=
\\\n
True"
)
p
=
function
.
parameters
[
'follow_symlinks'
]
self
.
assertEqual
(
True
,
p
.
default
)
def
test_param_default_expression
(
self
):
function
=
self
.
parse_function
(
"module os
\n
os.access
\n
follow_symlinks: int(c_default='MAXSIZE') = sys.maxsize"
)
p
=
function
.
parameters
[
'follow_symlinks'
]
self
.
assertEqual
(
sys
.
maxsize
,
p
.
default
)
self
.
assertEqual
(
"MAXSIZE"
,
p
.
converter
.
c_default
)
s
=
self
.
parse_function_should_fail
(
"module os
\n
os.access
\n
follow_symlinks: int = sys.maxsize"
)
self
.
assertEqual
(
s
,
"Error on line 0:
\n
When you specify a named constant ('sys.maxsize') as your default value,
\n
you MUST specify a valid c_default.
\n
"
)
def
test_param_no_docstring
(
self
):
function
=
self
.
parse_function
(
"""
module os
...
...
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