我们从Python开源项目中,提取了以下8个代码示例,用于说明如何使用copy.error()。
def test_exceptions(self): self.assertTrue(copy.Error is copy.error) self.assertTrue(issubclass(copy.Error, Exception)) # The copy() method
def test_exceptions(self): self.assertIs(copy.Error, copy.error) self.assertTrue(issubclass(copy.Error, Exception)) # The copy() method