mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Change all the function attributes from func_* -> __*__. This gets rid
of func_name, func_dict and func_doc as they already exist as __name__, __dict__ and __doc__.
This commit is contained in:
parent
27d517b21b
commit
221085de89
37 changed files with 160 additions and 184 deletions
|
@ -135,12 +135,12 @@ class KeywordOnlyArgTestCase(unittest.TestCase):
|
|||
def foo(p1,p2=0, *, k1, k2=0):
|
||||
return p1 + p2 + k1 + k2
|
||||
|
||||
self.assertEquals(2, foo.func_code.co_kwonlyargcount)
|
||||
self.assertEquals({"k2":0}, foo.func_kwdefaults)
|
||||
foo.func_kwdefaults = {"k1":0}
|
||||
self.assertEquals(2, foo.__code__.co_kwonlyargcount)
|
||||
self.assertEquals({"k2":0}, foo.__kwdefaults__)
|
||||
foo.__kwdefaults__ = {"k1":0}
|
||||
try:
|
||||
foo(1,k1=10)
|
||||
self.fail("func_kwdefaults is not properly changed")
|
||||
self.fail("__kwdefaults__ is not properly changed")
|
||||
except TypeError:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue