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: parser.st2list(..., col_info=True) triggers a SystemError
Type: crash Stage: resolved
Components: Extension Modules Versions: Python 3.8, Python 3.7, Python 3.6, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: brett.cannon, miss-islington, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2018-04-18 15:32 by brett.cannon, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 6519 merged serhiy.storchaka, 2018-04-18 16:16
PR 6526 merged miss-islington, 2018-04-18 22:56
PR 6527 merged miss-islington, 2018-04-18 22:56
PR 6532 merged serhiy.storchaka, 2018-04-19 05:23
Messages (5)
msg315455 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2018-04-18 15:32
`parser.st2list(parser.suite(""), col_info=True)` causes:

Fatal Python error: a function returned a result with an error set
IndexError: list assignment index out of range

```
The above exception was the direct cause of the following exception:

SystemError: <built-in function st2list> returned a result with an error set

Current thread 0x00007fff9ca99380 (most recent call first):
  File "/private/tmp/tester/lazy/sub.py", line 3 in <module>
fish: '/Users/brettcannon/Repositories…' terminated by signal SIGABRT (Abort)
```
msg315468 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-04-18 22:55
New changeset e5362eaa75a154c6e91c5b1c47719d0a0f5ca48b by Serhiy Storchaka in branch 'master':
bpo-33308: Fix a crash in the parser module when convert an ST object. (#6519)
https://github.com/python/cpython/commit/e5362eaa75a154c6e91c5b1c47719d0a0f5ca48b
msg315475 - (view) Author: miss-islington (miss-islington) Date: 2018-04-19 05:10
New changeset b27c71cdc02ae01081c14e7192f47abe636a831f by Miss Islington (bot) in branch '3.7':
bpo-33308: Fix a crash in the parser module when convert an ST object. (GH-6519)
https://github.com/python/cpython/commit/b27c71cdc02ae01081c14e7192f47abe636a831f
msg315476 - (view) Author: miss-islington (miss-islington) Date: 2018-04-19 05:11
New changeset fc8693dc7a228d687bf066e163f82a7724b58b68 by Miss Islington (bot) in branch '3.6':
bpo-33308: Fix a crash in the parser module when convert an ST object. (GH-6519)
https://github.com/python/cpython/commit/fc8693dc7a228d687bf066e163f82a7724b58b68
msg315480 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-04-19 06:16
New changeset d988c0b6bd1c5965fdc51428119e9104211e688f by Serhiy Storchaka in branch '2.7':
[2.7] bpo-33308: Fix a crash in the parser module when convert an ST object. (GH-6519) (GH-6532)
https://github.com/python/cpython/commit/d988c0b6bd1c5965fdc51428119e9104211e688f
History
Date User Action Args
2022-04-11 14:58:59adminsetgithub: 77489
2018-04-19 06:17:16serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-04-19 06:16:47serhiy.storchakasetmessages: + msg315480
2018-04-19 05:23:50serhiy.storchakasetpull_requests: + pull_request6225
2018-04-19 05:11:07miss-islingtonsetmessages: + msg315476
2018-04-19 05:10:39miss-islingtonsetnosy: + miss-islington
messages: + msg315475
2018-04-18 22:56:48miss-islingtonsetpull_requests: + pull_request6221
2018-04-18 22:56:05miss-islingtonsetpull_requests: + pull_request6220
2018-04-18 22:55:39serhiy.storchakasetmessages: + msg315468
2018-04-18 16:16:40serhiy.storchakasetkeywords: + patch
stage: test needed -> patch review
pull_requests: + pull_request6212
2018-04-18 16:06:42serhiy.storchakasetversions: + Python 2.7
nosy: + serhiy.storchaka

assignee: serhiy.storchaka
components: + Extension Modules, - Library (Lib)
type: behavior -> crash
2018-04-18 15:32:25brett.cannoncreate