summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon2022-01-201-2/+2
* bpo-42161: Hoist the _PyLong_GetOne() call out of the inner loop. (GH-30656)Raymond Hettinger2022-01-181-1/+1
* bpo-46328: Add sys.exception() (GH-30514)Irit Katriel2022-01-131-0/+63
* bpo-45256: Don't track the exact depth of each `InterpreterFrame` (GH-30372)Brandt Bucher2022-01-051-2/+2
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-171-1/+1
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-071-2/+2
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-061-1/+1
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-031-4/+4
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-291-3/+4
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-1/+12
* bpo-45315: PyType_FromSpec: Copy spec->name and have the type own the memory ...Petr Viktorin2021-10-211-1/+1
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-131-5/+5
* bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)Inada Naoki2021-10-101-2/+4
* bpo-45403: Fix test_sys.test_stdlib_dir() (GH-28785)Victor Stinner2021-10-071-2/+2
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-061-2/+2
* bpo-45211: Remember the stdlib dir during startup. (gh-28586)Eric Snow2021-09-281-0/+10
* bpo-41031: Match C and Python code formatting of unprintable exceptions and e...Irit Katriel2021-09-051-8/+18
* bpo-45083: Include the exception class qualname when formatting an exception ...Irit Katriel2021-09-031-0/+14
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-261-1/+1
* bpo-44207: Add an internal version number to function objects. (GH-27078)Mark Shannon2021-07-121-1/+1
* bpo-44032: Move pointer to code object from frame-object to frame specials ar...Mark Shannon2021-06-181-1/+1
* bpo-44206: Add a version number to dictionary keys (GH-26333)Mark Shannon2021-05-281-4/+5
* bpo-44032: Move data stack to thread from FrameObject. (GH-26076)Mark Shannon2021-05-211-5/+1
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-071-4/+3
* bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)Victor Stinner2021-04-301-2/+3
* bpo-43660: Fix crash when displaying exceptions with custom values for sys.st...Pablo Galindo2021-03-291-0/+15
* bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)Inada Naoki2021-03-291-1/+2
* bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...Mark Shannon2021-01-291-1/+1
* bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)Victor Stinner2021-01-251-2/+2
* bpo-42955: Add sys.modules_names (GH-24238)Victor Stinner2021-01-251-0/+5
* bpo-27794: Add `name` attribute to `property` class (GH-23967)Yurii Karabas2020-12-301-1/+1
* bpo-42500: Fix recursion in or after except (GH-23568)Mark Shannon2020-12-021-39/+7
* bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...Vladimir Matveev2020-11-101-1/+1
* bpo-41435: Add sys._current_exceptions() function (GH-21689)Julien Danjou2020-11-021-0/+67
* bpo-40275: Use new test.support helper submodules in tests (GH-21451)Hai Shi2020-08-031-3/+4
* bpo-40941: Unify implicit and explicit state in the frame and generator objec...Mark Shannon2020-07-171-2/+2
* bpo-23427: Add sys.orig_argv attribute (GH-20729)Victor Stinner2020-06-291-0/+20
* bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807)Victor Stinner2020-06-111-0/+1
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-271-3/+4
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-071-1/+1
* bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)Victor Stinner2020-04-231-1/+1
* bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)Pablo Galindo2020-04-221-4/+4
* bpo-40241: Add pycore_gc.h header file (GH-19494)Victor Stinner2020-04-131-2/+2
* bpo-39947: Move get_recursion_depth() to _testinternalcapi (GH-18974)Victor Stinner2020-03-131-1/+1