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: Mark all tests which use _testcapi as CPython only
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.3, Python 3.4, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ezio.melotti, python-dev, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2014-02-06 17:59 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
testcapi_cpython_only.patch serhiy.storchaka, 2014-02-06 17:59 review
Messages (3)
msg210409 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-02-06 17:59
The proposed patch marks all tests which use _testcapi as CPython only. Usually such tests don't make sense in alternative implementations. In particular tests which test integer overflow rely on implementation details.

This should help to use common tests for different implementations.
msg210439 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-02-07 08:11
New changeset 75c75d90f3a4 by Serhiy Storchaka in branch '2.7':
Issue #20532: Tests which use _testcapi now are marked as CPython only.
http://hg.python.org/cpython/rev/75c75d90f3a4

New changeset e5a78f7c2dcb by Serhiy Storchaka in branch '3.3':
Issue #20532: Tests which use _testcapi now are marked as CPython only.
http://hg.python.org/cpython/rev/e5a78f7c2dcb

New changeset b4e99bec0c8a by Serhiy Storchaka in branch 'default':
Issue #20532: Tests which use _testcapi now are marked as CPython only.
http://hg.python.org/cpython/rev/b4e99bec0c8a
msg210509 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-02-07 18:15
Thank you Ezio for your review.
History
Date User Action Args
2022-04-11 14:57:58adminsetgithub: 64731
2014-02-07 18:15:23serhiy.storchakasetstatus: open -> closed
resolution: fixed
messages: + msg210509

stage: patch review -> resolved
2014-02-07 08:11:05python-devsetnosy: + python-dev
messages: + msg210439
2014-02-06 18:29:39ezio.melottisetnosy: + ezio.melotti
2014-02-06 17:59:44serhiy.storchakacreate