| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-92914: Round the allocated size for lists up to the even number (GH-92915)... | Miss Islington (bot) | 2022-06-07 | 1 | -3/+4 |
|
|
* | Fix whitespace/indentation issues in test_sys (GH-32369) (GH-32372) | Ken Jin | 2022-04-20 | 1 | -2/+2 |
|
|
* | [3.10] Fix typos in the Lib directory (GH-28775) (GH-28804) | Christian Clauss | 2021-10-07 | 1 | -2/+2 |
|
|
* | [3.10] bpo-45083: Include the exception class qualname when formatting an exc... | Miss Islington (bot) | 2021-09-08 | 1 | -0/+14 |
|
|
* | bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721) | Victor Stinner | 2021-04-30 | 1 | -2/+3 |
|
|
* | bpo-43660: Fix crash when displaying exceptions with custom values for sys.st... | Pablo Galindo | 2021-03-29 | 1 | -0/+15 |
|
|
* | bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481) | Inada Naoki | 2021-03-29 | 1 | -1/+2 |
|
|
* | bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co... | Mark Shannon | 2021-01-29 | 1 | -1/+1 |
|
|
* | bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332) | Victor Stinner | 2021-01-25 | 1 | -2/+2 |
|
|
* | bpo-42955: Add sys.modules_names (GH-24238) | Victor Stinner | 2021-01-25 | 1 | -0/+5 |
|
|
* | bpo-27794: Add `name` attribute to `property` class (GH-23967) | Yurii Karabas | 2020-12-30 | 1 | -1/+1 |
|
|
* | bpo-42500: Fix recursion in or after except (GH-23568) | Mark Shannon | 2020-12-02 | 1 | -39/+7 |
|
|
* | bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2... | Vladimir Matveev | 2020-11-10 | 1 | -1/+1 |
|
|
* | bpo-41435: Add sys._current_exceptions() function (GH-21689) | Julien Danjou | 2020-11-02 | 1 | -0/+67 |
|
|
* | bpo-40275: Use new test.support helper submodules in tests (GH-21451) | Hai Shi | 2020-08-03 | 1 | -3/+4 |
|
|
* | bpo-40941: Unify implicit and explicit state in the frame and generator objec... | Mark Shannon | 2020-07-17 | 1 | -2/+2 |
|
|
* | bpo-23427: Add sys.orig_argv attribute (GH-20729) | Victor Stinner | 2020-06-29 | 1 | -0/+20 |
|
|
* | bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807) | Victor Stinner | 2020-06-11 | 1 | -0/+1 |
|
|
* | bpo-40275: Adding threading_helper submodule in test.support (GH-20263) | Hai Shi | 2020-05-27 | 1 | -3/+4 |
|
|
* | bpo-38787: C API for module state access from extension methods (PEP 573) (GH... | Petr Viktorin | 2020-05-07 | 1 | -1/+1 |
|
|
* | bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670) | Victor Stinner | 2020-04-23 | 1 | -1/+1 |
|
|
* | bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) | Pablo Galindo | 2020-04-22 | 1 | -4/+4 |
|
|
* | bpo-40241: Add pycore_gc.h header file (GH-19494) | Victor Stinner | 2020-04-13 | 1 | -2/+2 |
|
|
* | bpo-39947: Move get_recursion_depth() to _testinternalcapi (GH-18974) | Victor Stinner | 2020-03-13 | 1 | -1/+1 |
|
|
* | bpo-39882: Py_FatalError() logs the function name (GH-18819) | Victor Stinner | 2020-03-06 | 1 | -1/+4 |
|
|
* | bpo-38076 Clear the interpreter state only after clearing module globals (GH-... | Eddie Elizondo | 2020-02-04 | 1 | -0/+17 |
|
|
* | bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) | Victor Stinner | 2020-02-03 | 1 | -4/+0 |
|
|
* | bpo-38328: Speed up the creation time of constant list and set display. (GH-1... | Brandt Bucher | 2019-11-26 | 1 | -1/+1 |
|
|
* | Remove unused imports in tests (GH-14518) | Victor Stinner | 2019-07-01 | 1 | -1/+0 |
|
|
* | bpo-37467: Fix PyErr_Display() for bytes filename (GH-14504) | Victor Stinner | 2019-07-01 | 1 | -47/+76 |
|
|
* | bpo-37392: Remove sys.setcheckinterval() (GH-14355) | Victor Stinner | 2019-06-25 | 1 | -9/+0 |
|
|
* | bpo-20602: Do not clear sys.flags and sys.float_info during shutdown (GH-8096) | Zackery Spytz | 2019-05-30 | 1 | -0/+16 |
|
|
* | bpo-36974: implement PEP 590 (GH-13185) | Jeroen Demeyer | 2019-05-29 | 1 | -4/+4 |
|
|
* | bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488) | Victor Stinner | 2019-05-27 | 1 | -17/+27 |
|
|
* | bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507) | Victor Stinner | 2019-05-22 | 1 | -10/+5 |
|
|
* | bpo-36829: Add test.support.catch_unraisable_exception() (GH-13490) | Victor Stinner | 2019-05-22 | 1 | -0/+41 |
|
|
* | bpo-36829: Add sys.unraisablehook() (GH-13187) | Victor Stinner | 2019-05-22 | 1 | -4/+76 |
|
|
* | bpo-36611: Fix test_sys.test_getallocatedblocks() (GH-12797) | Victor Stinner | 2019-04-12 | 1 | -2/+7 |
|
|
* | bpo-30040: new empty dict uses key-sharing dict (GH-1080) | Inada Naoki | 2019-03-12 | 1 | -1/+3 |
|
|
* | bpo-35202: Remove unused imports in Lib directory. (GH-10446) | Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) | 2018-11-10 | 1 | -1/+0 |
|
|
* | Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-... | Victor Stinner | 2018-09-19 | 1 | -5/+3 |
|
|
* | bpo-34589: Add -X coerce_c_locale command line option (GH-9378) | Victor Stinner | 2018-09-18 | 1 | -3/+5 |
|
|
* | bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963) | Victor Stinner | 2018-08-29 | 1 | -0/+10 |
|
|
* | bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986) | Victor Stinner | 2018-08-29 | 1 | -9/+15 |
|
|
* | bpo-34485: Enhance init_sys_streams() (GH-8978) | Victor Stinner | 2018-08-28 | 1 | -3/+3 |
|
|
* | bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6... | Pablo Galindo | 2018-04-25 | 1 | -0/+3 |
|
|
* | bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) | Victor Stinner | 2017-12-13 | 1 | -3/+5 |
|
|
* | bpo-32101: Add PYTHONDEVMODE environment variable (#4624) | Victor Stinner | 2017-11-30 | 1 | -2/+4 |
|
|
* | bpo-32030: Rework memory allocators (#4625) | Victor Stinner | 2017-11-29 | 1 | -1/+8 |
|
|
* | bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print()).... | Serhiy Storchaka | 2017-11-15 | 1 | -0/+33 |
|
|