A().static_func
):
with self.subTest(meth=meth):
- self.assertEqual(meth.__doc__, 'My function docstring')
+ self.assertEqual(meth.__doc__,
+ ('My function docstring'
+ if support.HAVE_DOCSTRINGS
+ else None))
self.assertEqual(meth.__annotations__['arg'], int)
self.assertEqual(A.func.__name__, 'func')
WithSingleDispatch().decorated_classmethod
):
with self.subTest(meth=meth):
- self.assertEqual(meth.__doc__, 'My function docstring')
+ self.assertEqual(meth.__doc__,
+ ('My function docstring'
+ if support.HAVE_DOCSTRINGS
+ else None))
self.assertEqual(meth.__annotations__['arg'], int)
self.assertEqual(
self.assertIsInstance(CachedCostItem.cost, py_functools.cached_property)
def test_doc(self):
- self.assertEqual(CachedCostItem.cost.__doc__, "The cost of the item.")
+ self.assertEqual(CachedCostItem.cost.__doc__,
+ ("The cost of the item."
+ if support.HAVE_DOCSTRINGS
+ else None))
def test_module(self):
self.assertEqual(CachedCostItem.cost.__module__, CachedCostItem.__module__)