- ccd82a0 [3.10] Fix typos in the Python directory (GH-28767) (GH-28799) by Christian Clauss · 3 years, 9 months ago
- 6b996d6 [3.10] bpo-45083: Include the exception class qualname when formatting an exception (GH-28119) (GH-28134) by Miss Islington (bot) · 3 years, 10 months ago
- a77aac4 bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525) by Pablo Galindo · 4 years, 2 months ago
- 7a04116 bpo-25460: Surround suggestions by quotes (GH-25473) by Pablo Galindo · 4 years, 2 months ago
- e07f4ab bpo-38530: Make sure that failing to generate suggestions on failure will not propagate exceptions (GH-25408) by Pablo Galindo · 4 years, 2 months ago
- 37494b4 bpo-38530: Offer suggestions on AttributeError (#16856) by Pablo Galindo · 4 years, 2 months ago
- d36d6a9 bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243) by Victor Stinner · 4 years, 3 months ago
- 09b90a0 bpo-43660: Fix crash when displaying exceptions with custom values for sys.stderr (GH-25075) by Pablo Galindo · 4 years, 3 months ago
- 8370e07 bpo-43244: Remove the pyarena.h header (GH-25007) by Victor Stinner · 4 years, 3 months ago
- 57364ce bpo-43244: Remove parser_interface.h header file (GH-25001) by Victor Stinner · 4 years, 3 months ago
- a81fca6 bpo-43244: Add pycore_compile.h header file (GH-25000) by Victor Stinner · 4 years, 3 months ago
- 94faa07 bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933) by Victor Stinner · 4 years, 3 months ago
- 28ad12f bpo-43244: Remove symtable.h header file (GH-24910) by Victor Stinner · 4 years, 3 months ago
- 4a6bf27 bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561) by Nicholas Sim · 4 years, 4 months ago
- a82f63f bpo-32381: Add _PyRun_AnyFileObject() (GH-23723) by Victor Stinner · 4 years, 7 months ago
- 550e467 bpo-32381: Add _PyRun_SimpleFileObject() (GH-23709) by Victor Stinner · 4 years, 7 months ago
- b6d98c1 bpo-32381: Fix PyRun_SimpleFileExFlags() encoding (GH-23642) by Victor Stinner · 4 years, 7 months ago
- 46bd5ed bpo-40939: Restore some stable API functions incorrectly deleted (GH-23606) by Pablo Galindo · 4 years, 7 months ago
- fb5db7e bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetItemId. (GH-22648) by Serhiy Storchaka · 4 years, 8 months ago
- 98c4433 bpo-41991: Remove _PyObject_HasAttrId (GH-22629) by Serhiy Storchaka · 4 years, 9 months ago
- 564cd18 bpo-40939: Rename PyPegen* functions to PyParser* (GH-21016) by Lysandros Nikolaou · 5 years ago
- 314858e bpo-40939: Remove the old parser (Part 2) (GH-21005) by Lysandros Nikolaou · 5 years ago
- 1ed83ad bpo-40939: Remove the old parser (GH-20768) by Pablo Galindo · 5 years ago
- 90d2970 Fix MSVC warnings in pythonrun.c (#GH-0587) by Ammar Askar · 5 years ago
- 15bc9ab bpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072) by Guido van Rossum · 5 years ago
- 74ea6b5 bpo-40593: Improve syntax errors for invalid characters in source code. (GH-20033) by Serhiy Storchaka · 5 years ago
- 846d8b2 bpo-40246: Revert reporting of invalid string prefixes (GH-19888) by Lysandros Nikolaou · 5 years ago
- 2b74c83 bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721) by Pablo Galindo · 5 years ago
- ebebb64 bpo-40334: Improve various PEG-Parser related stuff (GH-19669) by Lysandros Nikolaou · 5 years ago
- 1def775 bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670) by Victor Stinner · 5 years ago
- c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 5 years ago
- 4f98f46 bpo-40268: Remove unused imports in pylifecycle.c (GH-19533) by Victor Stinner · 5 years ago
- 361dcdc bpo-40268: Remove unused osdefs.h includes (GH-19532) by Victor Stinner · 5 years ago
- e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 5 years ago
- 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 5 years ago
- da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 5 years ago
- 41d5b94 bpo-40246: Report a better error message for invalid string prefixes (GH-19476) by Lysandros Nikolaou · 5 years ago
- 1c1e68c bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183) by Victor Stinner · 5 years ago
- ff4584c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) by Victor Stinner · 5 years ago
- 4b52416 bpo-39542: Move object.h debug functions to internal C API (GH-18331) by Victor Stinner · 5 years ago
- bea33f5 bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks are invoked (GH-17392) by Steve Dower · 6 years ago
- 62161ce closes bpo-37633: Reëxport some function compatibility wrappers for macros in ``pythonrun.h``. (GH-17056) by Benjamin Peterson · 6 years ago
- 0b60f64 bpo-11410: Standardize and use symbol visibility attributes across POSIX and Windows. (GH-16347) by Vinay Sajip · 6 years ago
- 762f93f bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) by Jeroen Demeyer · 6 years ago
- f9b7457 bpo-37467: Fix PyErr_Display() for bytes filename (GH-14504) by Victor Stinner · 6 years ago
- 37d66d7 bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018) by Victor Stinner · 6 years ago
- 4154069 bpo-37001: Makes symtable.symtable have parity with compile for input (#13483) by Dino Viehland · 6 years ago
- a85a1d3 bpo-36829: sys.excepthook and sys.unraisablehook flush (GH-13620) by Victor Stinner · 6 years ago
- cd590a7 bpo-1230540: Add threading.excepthook() (GH-13515) by Victor Stinner · 6 years ago
- 331a6a5 bpo-36763: Implement the PEP 587 (GH-13592) by Victor Stinner · 6 years ago
- 438a12d bpo-36710: Add tstate parameter in ceval.c (GH-13547) by Victor Stinner · 6 years ago
- b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 6 years ago
- 1208328 bpo-36763: _Py_RunMain() doesn't call Py_Exit() anymore (GH-13390) by Victor Stinner · 6 years ago
- 9ef5dca bpo-36763: Add _Py_InitializeMain() (GH-13362) by Victor Stinner · 6 years ago
- c96be81 bpo-36900: Replace global conf vars with config (GH-13299) by Victor Stinner · 6 years ago
- 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 6 years ago
- d9bc543 Re-init _Py_UnhandledKeyboardInterrupt before run. (GH-11963) by Gregory P. Smith · 6 years ago
- 38f11cc bpo-1054041: Exit properly after an uncaught ^C. (#11862) by Gregory P. Smith · 6 years ago
- dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 6 years ago
- 82daa60 bpo-30167: Remove __cached__ from __main__ when removing __file__ (GH-7415) by INADA Naoki · 7 years ago
- 3bb183d bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664) by Victor Stinner · 7 years ago
- 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 7 years ago
- 5f2df88 bpo-35177: Add dependencies between header files (GH-10361) by Victor Stinner · 7 years ago
- 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 7 years ago
- 53c427e bpo-34653: Removed unused function PyParser_SimpleParseStringFilename. (GH-9260) by Eric V. Smith · 7 years ago
- e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 7 years ago
- caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 7 years ago
- aba24ff bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262) by Serhiy Storchaka · 7 years ago
- 993030a bpo-34080: Fix a memory leak in the compiler. (GH-8222) by Serhiy Storchaka · 7 years ago
- d8cba5d bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918) by Zackery Spytz · 7 years ago
- ea73775 bpo-33451: Close pyc files before calling PyEval_EvalCode() (GH-7884) by Zackery Spytz · 7 years ago
- ceeef10 bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581) by Serhiy Storchaka · 7 years ago
- 42aa93b closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575) by Benjamin Peterson · 8 years ago
- 25420fe bpo-32030: Add more options to _PyCoreConfig (#4485) by Victor Stinner · 8 years ago
- e0582a3 bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160) by xdegaye · 8 years ago
- e2f92de Add the const qualifier to "char *" variables that refer to literal strings. (#4370) by Serhiy Storchaka · 8 years ago
- 66caacf bpo-30817: Fix PyErr_PrintEx() when no memory (#2526) by xdegaye · 8 years ago
- de86073 bpo-28603: Fix formatting tracebacks for unhashable exceptions (#4014) by Zane Bitter · 8 years ago
- dae0276 bpo-30860: Fix a refleak. (#3567) by Eric Snow · 8 years ago
- 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 8 years ago
- 8728018 bpo-30860: Fix a refleak. (#3506) by Eric Snow · 8 years ago
- 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 8 years ago
- c7ec998 bpo-22257: Private C-API for main interpreter initialization (PEP 432). (#1729) by Eric Snow · 8 years ago
- 72e81d0 bpo-29556: Remove unused #include <langinfo.h> (#98) by Yen Chi Hsuan · 8 years ago
- b46edf3 Issue #25677: Merge SyntaxError caret positioning from 3.6 by Martin Panter · 9 years ago
- 619555d Issue #25677: Merge SyntaxError caret positioning from 3.5 by Martin Panter · 9 years ago
- ca3263c Issue #25677: Correct syntax error caret for indented blocks. by Martin Panter · 9 years ago
- 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 9 years ago
- 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 9 years ago
- fab6acd Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. by Serhiy Storchaka · 9 years ago
- f5894dd Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. by Serhiy Storchaka · 9 years ago
- 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 9 years ago
- 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 9 years ago
- 71cb64a PyErr_PrintEx() now uses fast call by Victor Stinner · 9 years ago
- 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 9 years ago
- 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 9 years ago
- 8cacc63 Issue #22836: Merge exception reporting from 3.5 by Martin Panter · 9 years ago
- 3263f68 Issue #22836: Keep exception reports sensible despite errors by Martin Panter · 9 years ago
- ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
- 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago