[issue36946] Possible signed integer overflow in slice handling

2019-09-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Zackery and HongWeipeng for your contribution! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue36946] Possible signed integer overflow in slice handling

2019-09-08 Thread miss-islington
miss-islington added the comment: New changeset 021e5db20bc19d678a5b94247a5cdcf689eff006 by Miss Islington (bot) in branch '3.7': bpo-36946:Fix possible signed integer overflow when handling slices. (GH-15639) https://github.com/python/cpython/commit/021e5db20bc19d678a5b94247a5cdcf689eff006

[issue36946] Possible signed integer overflow in slice handling

2019-09-08 Thread miss-islington
Change by miss-islington : -- pull_requests: +15383 pull_request: https://github.com/python/cpython/pull/15729 ___ Python tracker ___

[issue36946] Possible signed integer overflow in slice handling

2019-09-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 3c87a667bb367ace1de6bd1577fdb4f66947da52 by Serhiy Storchaka (HongWeipeng) in branch 'master': bpo-36946:Fix possible signed integer overflow when handling slices. (GH-15639)

[issue36946] Possible signed integer overflow in slice handling

2019-09-02 Thread hongweipeng
Change by hongweipeng : -- pull_requests: +15305 pull_request: https://github.com/python/cpython/pull/15639 ___ Python tracker ___

[issue36946] Possible signed integer overflow in slice handling

2019-08-24 Thread Batuhan
Batuhan added the comment: Should we close this? -- nosy: +BTaskaya ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36946] Possible signed integer overflow in slice handling

2019-05-17 Thread miss-islington
miss-islington added the comment: New changeset f02d1a43c6be658cd279edb90e8e96c99e1127e7 by Miss Islington (bot) in branch '3.7': bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) https://github.com/python/cpython/commit/f02d1a43c6be658cd279edb90e8e96c99e1127e7

[issue36946] Possible signed integer overflow in slice handling

2019-05-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +13287 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36946] Possible signed integer overflow in slice handling

2019-05-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 14514d9084a40f599c57da853a305aa264562a43 by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)

[issue36946] Possible signed integer overflow in slice handling

2019-05-16 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13286 stage: -> patch review ___ Python tracker ___ ___

[issue36946] Possible signed integer overflow in slice handling

2019-05-16 Thread Zackery Spytz
New submission from Zackery Spytz : Python 3.8.0a4+ (heads/master:870b035bc6, May 16 2019, 20:53:02) [GCC 9.0.1 20190402 (experimental) [trunk revision 270074]] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> 'hi'[1::sys.maxsize]