Home | History | Annotate | Download | only in test

Lines Matching refs:orig

1335             orig = ImportError('test', **kwargs)
1337 exc = pickle.loads(pickle.dumps(orig, proto))
1340 self.assertEqual(exc.name, orig.name)
1341 self.assertEqual(exc.path, orig.path)
1343 exc = c(orig)
1346 self.assertEqual(exc.name, orig.name)
1347 self.assertEqual(exc.path, orig.path)