summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cppext/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.12] gh-127906: Skip limited C API test_cext tests if Py_TRACE_REFS (#127993)Victor Stinner2024-12-161-0/+5
| | | | | | | gh-127906: Skip limited C API test_cext tests if Py_TRACE_REFS Skip limited C API tests in test_cext and test_cppext if Python is configured with --with-trace-refs (if the Py_TRACE_REFS macro is defined).
* [3.12] gh-127906: Test the limited C API in test_cppext (GH-127916) (#127920)Miss Islington (bot)2024-12-131-3/+9
| | | | | | gh-127906: Test the limited C API in test_cppext (GH-127916) (cherry picked from commit d05a4e6a0d366b854a3103cae0c941811fd48c4c) Co-authored-by: Victor Stinner <vstinner@python.org>
* [3.12] gh-127906: Backport test_cppext changes from the main branch (#127915)Victor Stinner2024-12-131-24/+35
|
* [3.12] Add support.MS_WINDOWS constant (#110446) (#110452)Victor Stinner2023-10-061-2/+1
| | | | | Add support.MS_WINDOWS constant (#110446) (cherry picked from commit e0c44377935de3491b2cbe1e5f87f8b336fdc922)
* [3.12] gh-108416: Mark slow test methods with @requires_resource('cpu') ↵Miss Islington (bot)2023-09-021-0/+2
| | | | | | | | | | | | (GH-108421) (#108798) gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-108421) Only mark tests which spend significant system or user time, by itself or in subprocesses. (cherry picked from commit f3ba0a74cd50274acdcd592d4ce8395b92492b7c) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.12] gh-108303: Add Lib/test/test_cppext/ sub-directory (GH-108325) (#108328)Miss Islington (bot)2023-08-221-0/+89
gh-108303: Add Lib/test/test_cppext/ sub-directory (GH-108325) * Move test_cppext to its own directory * Rename setup_testcppext.py to setup.py * Rename _testcppext.cpp to extension.cpp * The source (extension.cpp) is now also copied by the test. (cherry picked from commit 21dda09600848ac280481f7c64f8d9516dc69bb2) Co-authored-by: Victor Stinner <vstinner@python.org>