]> granicus.if.org Git - python/commitdiff
bpo-16355: Clarify when inspect.getcomments() returns None (#428)
authorMarco Buttu <marco.buttu@gmail.com>
Fri, 17 Mar 2017 08:50:23 +0000 (09:50 +0100)
committerBerker Peksag <berker.peksag@gmail.com>
Fri, 17 Mar 2017 08:50:23 +0000 (11:50 +0300)
Initial patch by Vajrasky Kok.

Doc/library/inspect.rst
Lib/test/test_inspect.py

index 3fa44a0c99891cd86a99506e735420fecfe8b2d6..4ff2187b45f8ebf7e0a3b2f2d3ab64f9eeeb29ae 100644 (file)
@@ -442,7 +442,9 @@ Retrieving source code
 
    Return in a single string any lines of comments immediately preceding the
    object's source code (for a class, function, or method), or at the top of the
-   Python source file (if the object is a module).
+   Python source file (if the object is a module).  If the object's source code
+   is unavailable, return ``None``.  This could happen if the object has been
+   defined in C or the interactive shell.
 
 
 .. function:: getfile(object)
index 9d9fedc21e57959d473b0292903060510d0fdafb..2f12e989d907a944f8858da59cf3aa5f66941d0f 100644 (file)
@@ -384,6 +384,11 @@ class TestRetrievingSourceCode(GetSourceBase):
     def test_getcomments(self):
         self.assertEqual(inspect.getcomments(mod), '# line 1\n')
         self.assertEqual(inspect.getcomments(mod.StupidGit), '# line 20\n')
+        # If the object source file is not available, return None.
+        co = compile('x=1', '_non_existing_filename.py', 'exec')
+        self.assertIsNone(inspect.getcomments(co))
+        # If the object has been defined in C, return None.
+        self.assertIsNone(inspect.getcomments(list))
 
     def test_getmodule(self):
         # Check actual module