Changeset 391 for python/trunk/Lib/test/test_call.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/test/test_call.py
r2 r391 13 13 14 14 def test_varargs1(self): 15 {}.has_key(0) 15 with test_support.check_py3k_warnings(): 16 {}.has_key(0) 16 17 17 18 def test_varargs2(self): … … 25 26 26 27 def test_varargs1_ext(self): 27 {}.has_key(*(0,)) 28 with test_support.check_py3k_warnings(): 29 {}.has_key(*(0,)) 28 30 29 31 def test_varargs2_ext(self): 30 32 try: 31 {}.has_key(*(1, 2)) 33 with test_support.check_py3k_warnings(): 34 {}.has_key(*(1, 2)) 32 35 except TypeError: 33 36 pass
Note:
See TracChangeset
for help on using the changeset viewer.