This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author matrixise
Recipients matrixise, rhettinger
Date 2015-11-03.21:06:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1446584780.53.0.330861171304.issue25548@psf.upfronthosting.co.za>
In-reply-to
Content
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'>
>>>
History
Date User Action Args
2015-11-03 21:06:20matrixisesetrecipients: + matrixise, rhettinger
2015-11-03 21:06:20matrixisesetmessageid: <1446584780.53.0.330861171304.issue25548@psf.upfronthosting.co.za>
2015-11-03 21:06:20matrixiselinkissue25548 messages
2015-11-03 21:06:20matrixisecreate