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 ddg
Recipients ddg
Date 2018-03-08.03:25:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1520479522.47.0.467229070634.issue33022@psf.upfronthosting.co.za>
In-reply-to
Content
```
>>> for i in (1,2,3,1.0,2.0,3.0): print(i, i+9007199254740991)
...
1 9007199254740992
2 9007199254740993
3 9007199254740994
1.0 9007199254740992.0
2.0 9007199254740992.0   # <-- !!!
3.0 9007199254740994.0

```

Notably 9007199254740991 = 2**53 -1

Probably an internal off by one?
History
Date User Action Args
2018-03-08 03:25:22ddgsetrecipients: + ddg
2018-03-08 03:25:22ddgsetmessageid: <1520479522.47.0.467229070634.issue33022@psf.upfronthosting.co.za>
2018-03-08 03:25:22ddglinkissue33022 messages
2018-03-08 03:25:22ddgcreate