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: remove superfluous pow test for (nonexistent) long
Type: enhancement Stage: resolved
Components: Tests Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: lukas.schwaighofer, python-dev, serhiy.storchaka, vstinner
Priority: normal Keywords: patch

Created on 2017-01-04 16:45 by lukas.schwaighofer, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_pow.patch lukas.schwaighofer, 2017-01-04 16:45 remove superfluous test review
Messages (4)
msg284652 - (view) Author: Lukas Schwaighofer (lukas.schwaighofer) Date: 2017-01-04 16:45
Since python 3 there is no longer a type long. There is still a legacy test formerly used for longs present in test_pow.py. As the same test is already present (as also visible at the beginning of the patch) the test can safely be removed.
msg284653 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-01-04 16:50
LGTM. Thank you for your patch Lukas.
msg284654 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-01-04 16:53
LGTM.
msg284655 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2017-01-04 16:54
New changeset f159ab8a9360 by Serhiy Storchaka in branch '3.5':
Issue #29156: Remove superfluous pow test.
https://hg.python.org/cpython/rev/f159ab8a9360

New changeset ef3440585a17 by Serhiy Storchaka in branch '3.6':
Issue #29156: Remove superfluous pow test.
https://hg.python.org/cpython/rev/ef3440585a17

New changeset 29d28f1bdc7c by Serhiy Storchaka in branch 'default':
Issue #29156: Remove superfluous pow test.
https://hg.python.org/cpython/rev/29d28f1bdc7c
History
Date User Action Args
2022-04-11 14:58:41adminsetgithub: 73342
2017-01-04 16:55:12serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: commit review -> resolved
2017-01-04 16:54:35python-devsetnosy: + python-dev
messages: + msg284655
2017-01-04 16:53:19vstinnersetnosy: + vstinner
messages: + msg284654
2017-01-04 16:50:17serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg284653

assignee: serhiy.storchaka
stage: commit review
2017-01-04 16:45:56lukas.schwaighofercreate