mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Issue #4113: Added custom __repr__ method to functools.partial.
This commit is contained in:
parent
419e3de373
commit
41e422a4ff
4 changed files with 82 additions and 1 deletions
|
@ -12,6 +12,7 @@ from test.support import run_unittest
|
|||
|
||||
from test import inspect_fodder as mod
|
||||
from test import inspect_fodder2 as mod2
|
||||
from test import inspect_fodder3 as mod3
|
||||
|
||||
# C module for test_findsource_binary
|
||||
import unicodedata
|
||||
|
@ -388,6 +389,12 @@ class TestBuggyCases(GetSourceBase):
|
|||
self.assertEqual(inspect.findsource(co), (lines,0))
|
||||
self.assertEqual(inspect.getsource(co), lines[0])
|
||||
|
||||
class TestNoEOF(GetSourceBase):
|
||||
fodderFile = mod3
|
||||
|
||||
def test_class(self):
|
||||
self.assertSourceEqual(mod3.X, 1, 2)
|
||||
|
||||
# Helper for testing classify_class_attrs.
|
||||
def attrs_wo_objs(cls):
|
||||
return [t[:3] for t in inspect.classify_class_attrs(cls)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue