We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_types
--without-doc-strings
1 parent 8bce40d commit 06ced70Copy full SHA for 06ced70
Lib/test/test_types.py
@@ -714,7 +714,10 @@ def call(part):
714
715
def test_frame_locals_proxy_type(self):
716
self.assertIsInstance(types.FrameLocalsProxyType, type)
717
- self.assertIsInstance(types.FrameLocalsProxyType.__doc__, str)
+ if MISSING_C_DOCSTRINGS:
718
+ self.assertIsNone(types.FrameLocalsProxyType.__doc__)
719
+ else:
720
+ self.assertIsInstance(types.FrameLocalsProxyType.__doc__, str)
721
self.assertEqual(types.FrameLocalsProxyType.__module__, 'builtins')
722
self.assertEqual(types.FrameLocalsProxyType.__name__, 'FrameLocalsProxy')
723
0 commit comments