Stéphane Wirtel added the comment:

Hi Raymond,

I just executed the code with python 3.5 and I don't have this result:

Python 3.5.0 (default, Sep 23 2015, 04:41:38)
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.72)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> class A: pass
...
>>> A
<class '__main__.A'>
>>> class A(object): pass
...
>>> A
<class '__main__.A'>
>>>

----------
nosy: +matrixise

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25548>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to