summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_inspect.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-07-21 16:01:52 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-07-21 16:01:52 (GMT)
commite4e811d65b51478392a7c69e83b38c6930012eb7 (patch)
tree36228ce64ec8a50737933259ac9aa33cffd68faf /Lib/test/test_inspect.py
parent036a71bf25b84fab72b023eaf9591e9c16ae2c52 (diff)
downloadcpython-e4e811d65b51478392a7c69e83b38c6930012eb7.zip
cpython-e4e811d65b51478392a7c69e83b38c6930012eb7.tar.gz
cpython-e4e811d65b51478392a7c69e83b38c6930012eb7.tar.bz2
Issue #24669: Fix inspect.getsource() for 'async def' functions.
Patch by Kai Groner.
Diffstat (limited to 'Lib/test/test_inspect.py')
-rw-r--r--Lib/test/test_inspect.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index 8e0e73c..e620893 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -336,6 +336,7 @@ class TestRetrievingSourceCode(GetSourceBase):
def test_getfunctions(self):
functions = inspect.getmembers(mod, inspect.isfunction)
self.assertEqual(functions, [('eggs', mod.eggs),
+ ('lobbest', mod.lobbest),
('spam', mod.spam)])
@unittest.skipIf(sys.flags.optimize >= 2,
@@ -393,6 +394,7 @@ class TestRetrievingSourceCode(GetSourceBase):
def test_getsource(self):
self.assertSourceEqual(git.abuse, 29, 39)
self.assertSourceEqual(mod.StupidGit, 21, 50)
+ self.assertSourceEqual(mod.lobbest, 70, 71)
def test_getsourcefile(self):
self.assertEqual(normcase(inspect.getsourcefile(mod.spam)), modfile)