From 29af0e2d810ebf41976e610316a179798dcf4824 Mon Sep 17 00:00:00 2001 From: hpk Date: Thu, 21 Aug 2008 15:53:19 +0200 Subject: [PATCH] [svn r57556] remove special Function __repr__ --HG-- branch : trunk --- py/test/pycollect.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/py/test/pycollect.py b/py/test/pycollect.py index c1ca54dce..c07a07fed 100644 --- a/py/test/pycollect.py +++ b/py/test/pycollect.py @@ -334,9 +334,6 @@ class Function(FunctionMixin, Item): def __ne__(self, other): return not self == other - def __repr__(self): - return ""%(self.name, id(self)) - class DoctestFile(FSCollector): def listdir(self): return [self.fspath.basename]