mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
bpo-42116: Fix inspect.getsource handling of trailing comments (GH-23630)
This commit is contained in:
parent
066394018a
commit
6e1eec71f5
4 changed files with 49 additions and 4 deletions
|
@ -390,6 +390,7 @@ class TestRetrievingSourceCode(GetSourceBase):
|
|||
('ParrotDroppings', mod.ParrotDroppings),
|
||||
('StupidGit', mod.StupidGit),
|
||||
('Tit', mod.MalodorousPervert),
|
||||
('WhichComments', mod.WhichComments),
|
||||
])
|
||||
tree = inspect.getclasstree([cls[1] for cls in classes])
|
||||
self.assertEqual(tree,
|
||||
|
@ -403,7 +404,8 @@ class TestRetrievingSourceCode(GetSourceBase):
|
|||
[(mod.FesteringGob, (mod.MalodorousPervert,
|
||||
mod.ParrotDroppings))
|
||||
]
|
||||
]
|
||||
],
|
||||
(mod.WhichComments, (object,),)
|
||||
]
|
||||
])
|
||||
tree = inspect.getclasstree([cls[1] for cls in classes], True)
|
||||
|
@ -415,7 +417,8 @@ class TestRetrievingSourceCode(GetSourceBase):
|
|||
[(mod.FesteringGob, (mod.MalodorousPervert,
|
||||
mod.ParrotDroppings))
|
||||
]
|
||||
]
|
||||
],
|
||||
(mod.WhichComments, (object,),)
|
||||
]
|
||||
])
|
||||
|
||||
|
@ -646,6 +649,18 @@ class TestOneliners(GetSourceBase):
|
|||
# as argument to another function.
|
||||
self.assertSourceEqual(mod2.anonymous, 55, 55)
|
||||
|
||||
class TestBlockComments(GetSourceBase):
|
||||
fodderModule = mod
|
||||
|
||||
def test_toplevel_class(self):
|
||||
self.assertSourceEqual(mod.WhichComments, 96, 114)
|
||||
|
||||
def test_class_method(self):
|
||||
self.assertSourceEqual(mod.WhichComments.f, 99, 104)
|
||||
|
||||
def test_class_async_method(self):
|
||||
self.assertSourceEqual(mod.WhichComments.asyncf, 109, 112)
|
||||
|
||||
class TestBuggyCases(GetSourceBase):
|
||||
fodderModule = mod2
|
||||
|
||||
|
@ -4014,8 +4029,8 @@ def foo():
|
|||
|
||||
def test_main():
|
||||
run_unittest(
|
||||
TestDecorators, TestRetrievingSourceCode, TestOneliners, TestBuggyCases,
|
||||
TestInterpreterStack, TestClassesAndFunctions, TestPredicates,
|
||||
TestDecorators, TestRetrievingSourceCode, TestOneliners, TestBlockComments,
|
||||
TestBuggyCases, TestInterpreterStack, TestClassesAndFunctions, TestPredicates,
|
||||
TestGetcallargsFunctions, TestGetcallargsMethods,
|
||||
TestGetcallargsUnboundMethods, TestGetattrStatic, TestGetGeneratorState,
|
||||
TestNoEOL, TestSignatureObject, TestSignatureBind, TestParameterObject,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue