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
ca4220be
Kaydet (Commit)
ca4220be
authored
Şub 05, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #17122: Fix and cleanup test_functools.py.
üst
773e42df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
50 deletions
+21
-50
test_functools.py
Lib/test/test_functools.py
+21
-50
No files found.
Lib/test/test_functools.py
Dosyayı görüntüle @
ca4220be
...
...
@@ -8,30 +8,9 @@ from random import choice
import
functools
original_functools
=
functools
py_functools
=
support
.
import_fresh_module
(
'functools'
,
blocked
=
[
'_functools'
])
c_functools
=
support
.
import_fresh_module
(
'functools'
,
fresh
=
[
'_functools'
])
class
BaseTest
(
unittest
.
TestCase
):
"""Base class required for testing C and Py implementations."""
def
setUp
(
self
):
# The module must be explicitly set so that the proper
# interaction between the c module and the python module
# can be controlled.
self
.
partial
=
self
.
module
.
partial
super
(
BaseTest
,
self
)
.
setUp
()
class
BaseTestC
(
BaseTest
):
module
=
c_functools
class
BaseTestPy
(
BaseTest
):
module
=
py_functools
PythonPartial
=
py_functools
.
partial
def
capture
(
*
args
,
**
kw
):
"""capture all positional and keyword arguments"""
return
args
,
kw
...
...
@@ -40,9 +19,7 @@ def signature(part):
""" return the signature of a partial object """
return
(
part
.
func
,
part
.
args
,
part
.
keywords
,
part
.
__dict__
)
class
TestPartial
(
object
):
partial
=
functools
.
partial
class
TestPartial
:
def
test_basic_examples
(
self
):
p
=
self
.
partial
(
capture
,
1
,
2
,
a
=
10
,
b
=
20
)
...
...
@@ -161,12 +138,17 @@ class TestPartial(object):
join
=
self
.
partial
(
''
.
join
)
self
.
assertEqual
(
join
(
data
),
'0123456789'
)
@unittest.skipUnless
(
c_functools
,
'requires the C _functools module'
)
class
TestPartialC
(
TestPartial
,
unittest
.
TestCase
):
if
c_functools
:
partial
=
c_functools
.
partial
def
test_repr
(
self
):
args
=
(
object
(),
object
())
args_repr
=
', '
.
join
(
repr
(
a
)
for
a
in
args
)
kwargs
=
{
'a'
:
object
(),
'b'
:
object
()}
kwargs_repr
=
', '
.
join
(
"
%
s=
%
r"
%
(
k
,
v
)
for
k
,
v
in
kwargs
.
items
())
if
self
.
partial
is
functools
.
partial
:
if
self
.
partial
is
c_
functools
.
partial
:
name
=
'functools.partial'
else
:
name
=
self
.
partial
.
__name__
...
...
@@ -193,8 +175,6 @@ class TestPartial(object):
f_copy
=
pickle
.
loads
(
pickle
.
dumps
(
f
))
self
.
assertEqual
(
signature
(
f
),
signature
(
f_copy
))
class
TestPartialC
(
BaseTestC
,
TestPartial
):
# Issue 6083: Reference counting bug
def
test_setstate_refcount
(
self
):
class
BadSequence
:
...
...
@@ -214,27 +194,17 @@ class TestPartialC(BaseTestC, TestPartial):
"new style getargs format but argument is not a tuple"
,
f
.
__setstate__
,
BadSequence
())
class
TestPartialPy
(
BaseTestPy
,
TestPartial
):
def
test_pickle
(
self
):
raise
unittest
.
SkipTest
(
"Python implementation of partial isn't picklable"
)
def
test_repr
(
self
):
raise
unittest
.
SkipTest
(
"Python implementation of partial uses own repr"
)
class
TestPartialCSubclass
(
TestPartialC
):
class
TestPartialPy
(
TestPartial
,
unittest
.
TestCase
):
partial
=
staticmethod
(
py_functools
.
partial
)
if
c_functools
:
class
PartialSubclass
(
c_functools
.
partial
):
pass
partial
=
staticmethod
(
PartialSubclass
)
class
TestPartialPySubclass
(
TestPartialPy
):
class
PartialSubclass
(
c_functools
.
partial
):
pass
partial
=
staticmethod
(
PartialSubclass
)
@unittest.skipUnless
(
c_functools
,
'requires the C _functools module'
)
class
TestPartialCSubclass
(
TestPartialC
):
if
c_functools
:
partial
=
PartialSubclass
class
TestUpdateWrapper
(
unittest
.
TestCase
):
...
...
@@ -482,7 +452,7 @@ class TestReduce(unittest.TestCase):
d
=
{
"one"
:
1
,
"two"
:
2
,
"three"
:
3
}
self
.
assertEqual
(
self
.
func
(
add
,
d
),
""
.
join
(
d
.
keys
()))
class
TestCmpToKey
(
object
)
:
class
TestCmpToKey
:
def
test_cmp_to_key
(
self
):
def
cmp1
(
x
,
y
):
...
...
@@ -513,7 +483,7 @@ class TestCmpToKey(object):
with
self
.
assertRaises
(
TypeError
):
key
=
self
.
cmp_to_key
()
# too few args
with
self
.
assertRaises
(
TypeError
):
key
=
self
.
module
.
cmp_to_key
(
cmp1
,
None
)
# too many args
key
=
self
.
cmp_to_key
(
cmp1
,
None
)
# too many args
key
=
self
.
cmp_to_key
(
cmp1
)
with
self
.
assertRaises
(
TypeError
):
key
()
# too few args
...
...
@@ -564,10 +534,12 @@ class TestCmpToKey(object):
self
.
assertRaises
(
TypeError
,
hash
,
k
)
self
.
assertNotIsInstance
(
k
,
collections
.
Hashable
)
class
TestCmpToKeyC
(
BaseTestC
,
TestCmpToKey
):
cmp_to_key
=
c_functools
.
cmp_to_key
@unittest.skipUnless
(
c_functools
,
'requires the C _functools module'
)
class
TestCmpToKeyC
(
TestCmpToKey
,
unittest
.
TestCase
):
if
c_functools
:
cmp_to_key
=
c_functools
.
cmp_to_key
class
TestCmpToKeyPy
(
BaseTestPy
,
TestCmpToKey
):
class
TestCmpToKeyPy
(
TestCmpToKey
,
unittest
.
TestCase
):
cmp_to_key
=
staticmethod
(
py_functools
.
cmp_to_key
)
class
TestTotalOrdering
(
unittest
.
TestCase
):
...
...
@@ -842,7 +814,6 @@ def test_main(verbose=None):
TestPartialC
,
TestPartialPy
,
TestPartialCSubclass
,
TestPartialPySubclass
,
TestUpdateWrapper
,
TestTotalOrdering
,
TestCmpToKeyC
,
...
...
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