summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
Commit message (Expand)AuthorAgeFilesLines
* gh-111863: Rename `Py_NOGIL` to `Py_GIL_DISABLED` (#111864)Hugo van Kemenade2023-11-201-1/+1
* gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)Serhiy Storchaka2023-11-031-43/+54
* gh-67224: Show source lines in tracebacks when using the -c option when runni...Pablo Galindo Salgado2023-10-261-2/+6
* GH-110796: fix intermittent test failure in test_current_exceptionsFilipe LaĆ­ns2023-10-131-6/+3
* gh-110721: Use the traceback module for PyErr_Display() and fallback to the C...Pablo Galindo Salgado2023-10-121-1/+2
* gh-108963: using random to generate unique string in sys.intern test (#109491)AN Long2023-10-021-10/+3
* gh-109740: Use 't' in `--disable-gil` SOABI (#109922)Sam Gross2023-09-271-0/+7
* gh-109599: Add types.CapsuleType (#109600)Antoine Pitrou2023-09-251-1/+2
* gh-108753: Enhance pystats (#108754)Victor Stinner2023-09-061-0/+9
* gh-108851: Fix tomllib recursion tests (#108853)Victor Stinner2023-09-061-30/+35
* gh-106320: Remove private _PyErr_WriteUnraisableMsg() (#108863)Victor Stinner2023-09-041-2/+2
* gh-108634: Py_TRACE_REFS uses a hash table (#108663)Victor Stinner2023-08-311-0/+21
* test_sys: remove debug print() (#108642)Victor Stinner2023-08-291-1/+0
* gh-106931: Fix the WASM Buildbots (gh-107362)Eric Snow2023-07-271-1/+12
* gh-106931: Intern Statically Allocated Strings Globally (gh-107272)Eric Snow2023-07-271-0/+30
* gh-106320: Remove private _PyMem API (#107187)Victor Stinner2023-07-241-2/+2
* GH-91095: Specialize calls to normal Python classes. (GH-99331)Mark Shannon2023-06-221-1/+1
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-161-1/+1
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-121-1/+1
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-221-1/+2
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-1/+1
* gh-103176: sys._current_exceptions() returns mapping to exception instances i...Irit Katriel2023-04-111-3/+3
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-291-1/+1
* gh-102799: remove unnecessary calls to sys.exc_info() in tests (#102800)Irit Katriel2023-03-181-2/+2
* Fix deadlock on shutdown if test_current_{exception,frames} fails (#102019)Jacob Bower2023-02-231-73/+75
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-231-1/+1
* gh-86682: Adds sys._getframemodulename as an alternative to using _getframe (...Steve Dower2023-01-131-0/+20
* gh-100637: Fix int and bool __sizeof__ calculation to include the 1 element o...Ionite2023-01-021-1/+2
* gh-89189: More compact range iterator (GH-27986)Serhiy Storchaka2022-11-301-1/+2
* GH-96793: Implement PEP 479 in bytecode. (GH-99006)Mark Shannon2022-11-031-1/+1
* gh-91051: allow setting a callback hook on PyType_Modified (GH-97875)Carl Meyer2022-10-211-1/+1
* gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96499)Gregory P. Smith2022-09-021-2/+8
* gh-96125: Fix sys.thread_info.name on pthread platforms (GH-96126)Christian Heimes2022-08-191-0/+8
* GH-95707: Fix uses of `Py_TPFLAGS_MANAGED_DICT` (GH-95854)Mark Shannon2022-08-151-1/+1
* gh-94673: Add Per-Interpreter tp_subclasses for Static Builtin Types (gh-95301)Eric Snow2022-08-051-1/+1
* gh-95174: Add pthread stubs for WASI (GH-95234)Christian Heimes2022-07-271-1/+1
* gh-94673: Add Per-Interpreter Storage for Static Builtin Types (#95255)Eric Snow2022-07-261-1/+1
* gh-93575: Use correct way to calculate PyUnicode struct sizes (GH-93602)Christian Heimes2022-06-081-0/+1
* gh-92914: Round the allocated size for lists up to the even number (GH-92915)Serhiy Storchaka2022-05-191-3/+4
* gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)Inada Naoki2022-05-121-2/+2
* gh-57684: Add -P cmdline option and PYTHONSAFEPATH env var (#31542)Victor Stinner2022-05-051-2/+2
* gh-84461: Add sys._emscripten_info, improve docs and build (gh-91781)Christian Heimes2022-04-231-0/+8
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-071-4/+7
* Fix whitespace/indentation issues in test_sys (GH-32369)Ken Jin2022-04-061-2/+2
* bpo-46845: Reduce dict size when all keys are Unicode (GH-31564)Inada Naoki2022-03-011-4/+8
* bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)Mark Shannon2022-03-011-1/+3
* bpo-46329: Change calling sequence (again) (GH-31373)Mark Shannon2022-02-181-1/+1
* bpo-46675: Allow object value arrays and split key dictionaries larger than 1...Mark Shannon2022-02-081-4/+5
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-0/+7
* bpo-46481: Implement vectorcall for weakref.ref.__call__ method. (GH-30820)Dong-hee Na2022-01-231-2/+2