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 terry.reedy
Recipients Jon.Shemitz, docs@python, r.david.murray, sreepriya, terry.reedy
Date 2014-03-12.18:57:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1394650639.77.0.122698843025.issue20692@psf.upfronthosting.co.za>
In-reply-to
Content
Replace 'The right way... with
----
To look up an attribute on an integer literal, separate the literal from the period with either a space or parentheses.

    >>> 3 .__class__
    <class 'int'>
    >>> (5).__class__
    <type 'int'>
History
Date User Action Args
2014-03-12 18:57:19terry.reedysetrecipients: + terry.reedy, r.david.murray, docs@python, Jon.Shemitz, sreepriya
2014-03-12 18:57:19terry.reedysetmessageid: <1394650639.77.0.122698843025.issue20692@psf.upfronthosting.co.za>
2014-03-12 18:57:19terry.reedylinkissue20692 messages
2014-03-12 18:57:19terry.reedycreate