From a3d19f35c49b5eb8f7089d851629b299574e5c35 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 13 Apr 2008 02:05:48 +0000 Subject: Backport the removal of a __repr__ from 62251 --- Lib/io.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/io.py b/Lib/io.py index 734f978..213b0fc 100644 --- a/Lib/io.py +++ b/Lib/io.py @@ -1346,9 +1346,6 @@ class TextIOWrapper(TextIOBase): # - "bytes_..." for integer variables that count input bytes # - "chars_..." for integer variables that count decoded characters - def __repr__(self): - return '' % id(self) - @property def encoding(self): return self._encoding -- cgit v0.12