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.
Created on 2020年12月20日 21:10 by serhiy.storchaka, last changed 2022年04月11日 14:59 by admin. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 23948 | merged | vstinner, 2020年12月26日 00:38 | |
| PR 21986 | koubaa, 2020年12月26日 00:42 | ||
| Messages (3) | |||
|---|---|---|---|
| msg383453 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2020年12月20日 21:10 | |
====================================================================== FAIL: test_new_curses_panel (test.test_curses.TestCurses) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/serhiy/py/cpython/Lib/test/test_curses.py", line 425, in test_new_curses_panel self.assertRaises(TypeError, type(panel)) AssertionError: TypeError not raised by panel ---------------------------------------------------------------------- The regression was introduced in 1baf030a902392fe92d934ed0fb6a385cf7d8869 (issue1635741). It can lead to crash because creation of non-initialized object is allowed now. See issue23815 for details. |
|||
| msg383784 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2020年12月26日 00:40 | |
I can reproduce the issue with the command: ./python -m test -u all test_curses I wrote PR 23948 to fix the regression. Note: "./python -m test test_curses" doesn't fail since the test is skipped. |
|||
| msg383788 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2020年12月26日 01:18 | |
New changeset 993e88cf08994f7c1e0f9f62fda4ed32634ee2ad by Victor Stinner in branch 'master': bpo-42694: Prevent creating _curses_panel.panel (GH-23948) https://github.com/python/cpython/commit/993e88cf08994f7c1e0f9f62fda4ed32634ee2ad |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:59:39 | admin | set | github: 86860 |
| 2020年12月26日 01:18:28 | vstinner | set | status: open -> closed resolution: fixed stage: patch review -> resolved |
| 2020年12月26日 01:18:04 | vstinner | set | messages: + msg383788 |
| 2020年12月26日 00:42:59 | koubaa | set | nosy:
+ koubaa pull_requests: + pull_request22797 |
| 2020年12月26日 00:40:21 | vstinner | set | messages: + msg383784 |
| 2020年12月26日 00:38:18 | vstinner | set | keywords:
+ patch stage: patch review pull_requests: + pull_request22796 |
| 2020年12月20日 21:10:00 | serhiy.storchaka | create | |