(self)
| 154 | @unittest.skipIf(sys.flags.optimize >= 2, |
| 155 | "Docstrings are omitted with -O2 and above") |
| 156 | def test_property_builtin_doc_writable(self): |
| 157 | p = property(doc='basic') |
| 158 | self.assertEqual(p.__doc__, 'basic') |
| 159 | p.__doc__ = 'extended' |
| 160 | self.assertEqual(p.__doc__, 'extended') |
| 161 | |
| 162 | @unittest.skipIf(sys.flags.optimize >= 2, |
| 163 | "Docstrings are omitted with -O2 and above") |
nothing calls this directly
no test coverage detected