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: Improve tests for syntax and grammar in 2.7
Type: enhancement Stage: resolved
Components: Tests Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2018-01-02 15:20 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 5085 merged serhiy.storchaka, 2018-01-02 15:22
PR 5086 merged serhiy.storchaka, 2018-01-02 15:25
PR 5095 merged python-dev, 2018-01-04 08:37
Messages (4)
msg309374 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-01-02 15:20
The proposed PR:

* Fixes Py3k warnings introduced by recent backports.
* Backports tests from Python 3.
* Improve handling of Py3k warnings. They are now checked only for statements that emit them instead of silencing for the whole module.
* Fixes few minor defects that can lead to hiding expected errors.
msg309456 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-01-04 08:36
New changeset 0bcba372bcd564555c98a65be4fb1309ff1ae5d5 by Serhiy Storchaka in branch '2.7':
bpo-32482: Improve syntax and grammar tests. (#5085)
https://github.com/python/cpython/commit/0bcba372bcd564555c98a65be4fb1309ff1ae5d5
msg309457 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-01-04 08:36
New changeset 0cc99c8cd70d422e4b345837a907db30e9180ab9 by Serhiy Storchaka in branch 'master':
bpo-32482: Fix suspicious code in tests for syntax and grammar. (#5086)
https://github.com/python/cpython/commit/0cc99c8cd70d422e4b345837a907db30e9180ab9
msg309461 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-01-04 09:32
New changeset a70d5ff992e5e123a3fa6f0e7f672026db8ed1f7 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6':
bpo-32482: Fix suspicious code in tests for syntax and grammar. (GH-5086) (#5095)
https://github.com/python/cpython/commit/a70d5ff992e5e123a3fa6f0e7f672026db8ed1f7
History
Date User Action Args
2022-04-11 14:58:56adminsetgithub: 76663
2018-01-04 09:34:31serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-01-04 09:32:55serhiy.storchakasetmessages: + msg309461
2018-01-04 08:37:11python-devsetpull_requests: + pull_request4964
2018-01-04 08:36:38serhiy.storchakasetmessages: + msg309457
2018-01-04 08:36:17serhiy.storchakasetmessages: + msg309456
2018-01-02 15:25:45serhiy.storchakasetpull_requests: + pull_request4961
2018-01-02 15:22:48serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request4960
2018-01-02 15:20:43serhiy.storchakacreate