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
80a0a1e1
Kaydet (Commit)
80a0a1e1
authored
Ock 28, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix skip conditions in some docstings tests.
üst
d7797c6e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
test_functools.py
Lib/test/test_functools.py
+1
-1
test_property.py
Lib/test/test_property.py
+2
-2
No files found.
Lib/test/test_functools.py
Dosyayı görüntüle @
80a0a1e1
...
...
@@ -259,7 +259,7 @@ class TestWraps(TestUpdateWrapper):
self
.
assertEqual
(
wrapper
.
__name__
,
'f'
)
self
.
assertEqual
(
wrapper
.
attr
,
'This is also a test'
)
@unittest.skipIf
(
not
sys
.
flags
.
optimize
<=
1
,
@unittest.skipIf
(
sys
.
flags
.
optimize
>=
2
,
"Docstrings are omitted with -O2 and above"
)
def
test_default_update_doc
(
self
):
wrapper
=
self
.
_default_update
()
...
...
Lib/test/test_property.py
Dosyayı görüntüle @
80a0a1e1
...
...
@@ -163,7 +163,7 @@ class PropertySubclassTests(unittest.TestCase):
Foo
.
spam
.
__doc__
,
"spam wrapped in property subclass"
)
@unittest.skipIf
(
sys
.
flags
.
optimize
<
=
2
,
@unittest.skipIf
(
sys
.
flags
.
optimize
>
=
2
,
"Docstrings are omitted with -O2 and above"
)
def
test_property_setter_copies_getter_docstring
(
self
):
class
Foo
(
object
):
...
...
@@ -196,7 +196,7 @@ class PropertySubclassTests(unittest.TestCase):
FooSub
.
spam
.
__doc__
,
"spam wrapped in property subclass"
)
@unittest.skipIf
(
sys
.
flags
.
optimize
<
=
2
,
@unittest.skipIf
(
sys
.
flags
.
optimize
>
=
2
,
"Docstrings are omitted with -O2 and above"
)
def
test_property_new_getter_new_docstring
(
self
):
...
...
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