mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Issue #22613: Fix reprlib.Repr subclass example on Python 3.
Reported by Jacques Ducasse.
This commit is contained in:
@@ -148,11 +148,11 @@ for file objects could be added::
|
||||
import sys
|
||||
|
||||
class MyRepr(reprlib.Repr):
|
||||
def repr_file(self, obj, level):
|
||||
if obj.name in ['<stdin>', '<stdout>', '<stderr>']:
|
||||
|
||||
def repr_TextIOWrapper(self, obj, level):
|
||||
if obj.name in {'<stdin>', '<stdout>', '<stderr>'}:
|
||||
return obj.name
|
||||
else:
|
||||
return repr(obj)
|
||||
return repr(obj)
|
||||
|
||||
aRepr = MyRepr()
|
||||
print(aRepr.repr(sys.stdin)) # prints '<stdin>'
|
||||
|
||||
Reference in New Issue
Block a user