Bug #2565: The repr() of type objects now calls them 'class',

not 'type' - whether they are builtin types or not.
This commit is contained in:
Martin v. Löwis 2008-04-07 05:43:42 +00:00
parent 5a6f4585fd
commit 250ad613f3
13 changed files with 40 additions and 43 deletions

View file

@ -184,7 +184,7 @@ desired. ::
... print('x =', x)
... print('y =', y)
...
<type 'Exception'>
<class 'Exception'>
('spam', 'eggs')
('spam', 'eggs')
x = spam