[issue36693] Minor inconsistancy with types.

2019-04-21 Thread SilentGhost
Change by SilentGhost : -- nosy: +christian.heimes versions: +Python 3.7, Python 3.8 -Python 3.5 ___ Python tracker ___ ___

[issue36693] Minor inconsistancy with types.

2019-04-21 Thread Donald Hobson
New submission from Donald Hobson : Almost all of python makes the abstraction that ints are a single type of thing, the fact that some ints are too big to store in 8 bytes of memory is abstracted away. This abstraction fails when you try to reverse large ranges. >>> reversed(range(1<<63))