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.

classification
Title: Loading 2 GiLOC file which raises exception causes wrong traceback
Type: behavior Stage: resolved
Components: Interpreter Core Versions: Python 3.4
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: SoniEx2, benjamin.peterson, vstinner
Priority: low Keywords:

Created on 2015-01-31 03:40 by SoniEx2, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (5)
msg235079 - (view) Author: (SoniEx2) Date: 2015-01-31 03:40
I loaded a file with 2 GiLOC followed by "assert False" and this was the error/traceback:

Traceback (most recent call last):
  File "test.py", line -2147483647, in <module>
AssertionError
msg241196 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2015-04-16 03:26
Considering how rare (hopefully!) files of that size are, I wouldn't be adverse to a "won't fix" resolution.
msg241197 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2015-04-16 03:27
Considering how rare (hopefully!) files of that size are, I wouldn't be adverse to a "won't fix" resolution.
msg324932 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2018-09-10 16:14
We would need to know what test.py was actually doing to fix this bug.
msg324936 - (view) Author: (SoniEx2) Date: 2018-09-10 16:44
test.py is the result of `"\n" * (2**31) + "assert False"`, written to a
file.

On Mon, Sep 10, 2018, 13:14 Benjamin Peterson <report@bugs.python.org>
wrote:

>
> Benjamin Peterson <benjamin@python.org> added the comment:
>
> We would need to know what test.py was actually doing to fix this bug.
>
> ----------
> resolution:  -> works for me
> stage:  -> resolved
> status: open -> closed
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue23354>
> _______________________________________
>
History
Date User Action Args
2022-04-11 14:58:12adminsetgithub: 67543
2021-09-03 22:30:34iritkatrielsetstatus: open -> closed
resolution: wont fix
2018-09-10 16:45:53benjamin.petersonsetstatus: closed -> open
resolution: works for me -> (no value)
2018-09-10 16:44:02SoniEx2setmessages: + msg324936
2018-09-10 16:14:11benjamin.petersonsetstatus: open -> closed
resolution: works for me
messages: + msg324932

stage: resolved
2015-07-21 07:18:47ethan.furmansetnosy: - ethan.furman
2015-04-16 03:27:40ethan.furmansetpriority: normal -> low

messages: + msg241197
2015-04-16 03:26:34ethan.furmansetmessages: + msg241196
2015-02-18 22:55:44vstinnersetnosy: + vstinner
2015-01-31 15:28:10pitrousetnosy: + benjamin.peterson
2015-01-31 04:16:07ethan.furmansetnosy: + ethan.furman
2015-01-31 03:40:41SoniEx2create