aboutsummaryrefslogtreecommitdiff
path: root/Python
AgeCommit message (Expand)Author
2021-11-20bpo-45848: Allow the parser to get error lines from encoded files (GH-29646)Pablo Galindo Salgado
2021-11-19Fix link to exception handling notes (GH-29617)Irit Katriel
2021-11-19bpo-45709: Fix tracing when exception is handled. (GH-29638)Mark Shannon
2021-11-19bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney
2021-11-18bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...Mark Shannon
2021-11-18bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)Dong-hee Na
2021-11-18bpo-45826: Fix a crash in suggestions.c by checking for `traceback is None` (...Dennis Sweeney
2021-11-17bpo-42540: reallocation of id_mutex should not force default allocator (GH-29...Sam Gross
2021-11-17bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596)Victor Stinner
2021-11-16bpo-45636: Simplify BINARY_OP (GH-29565)Brandt Bucher
2021-11-16bpo-45753: Make recursion checks more efficient. (GH-29524)Mark Shannon
2021-11-16bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)Victor Stinner
2021-11-15bpo-45636: Remove the old %-formatting fast-path (GH-29532)Brandt Bucher
2021-11-12bpo-45711: assert that the type of exc_info is redundant (GH-29518)Irit Katriel
2021-11-11bpo-45773: Stop "optimizing" certain jump patterns (GH-29505)Brandt Bucher
2021-11-10bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher
2021-11-10bpo-45696: Deep-freeze selected modules (GH-29118)Guido van Rossum
2021-11-10bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)Irit Katriel
2021-11-05bpo-45292: [PEP 654] Update traceback display code to work with exception gro...Irit Katriel
2021-11-02bpo-45688: Add _scproxy to sys.stdlib_module_names (GH-29358)Christian Heimes
2021-10-29bpo-45379: clarify FROZEN_EXCLUDED and FROZEN_INVALID documentation (GH-29189)Filipe Laíns
2021-10-28bpo-45395: Make custom frozen modules additions instead of replacements. (gh-...Eric Snow
2021-10-28bpo-45379: add custom error string for FROZEN_DISABLED (GH-29190)Filipe Laíns
2021-10-28Store actual ints, not pointers to them in the interpreter state. (GH-29274)Mark Shannon
2021-10-28bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon
2021-10-28bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)Ken Jin
2021-10-28bpo-45637: Store the frame pointer in the cframe (GH-29267)Mark Shannon
2021-10-27Don't make a call at the C level when calling bound-methods from Python code....Mark Shannon
2021-10-27bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)Brandt Bucher
2021-10-22bpo-45506: Normalize _PyPathConfig.stdlib_dir when calculated. (#29040)Eric Snow
2021-10-23bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...Irit Katriel
2021-10-21bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes
2021-10-20bpo-45527: Don't count cache hits, just misses. (GH-29092)Mark Shannon
2021-10-20bpo-44525: Specialize simple Python calls. (GH-29033)Mark Shannon
2021-10-20bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)Ken Jin
2021-10-19Record cache hits for BINARY_SUBSCR specializations (GH-29060)Ken Jin
2021-10-19bpo-35134: Add Include/cpython/longobject.h (GH-29044)Victor Stinner
2021-10-18bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)Victor Stinner
2021-10-18bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)Mark Shannon
2021-10-18bpo-45434: Include stdlib.h for specialize stat (GH-29015)Dong-hee Na
2021-10-16bpo-45020: Default to using frozen modules unless running from source tree. (...Eric Snow
2021-10-15bpo-45440: Remove pymath.c fallbacks (GH-28977)Victor Stinner
2021-10-15bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)Victor Stinner
2021-10-15bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975)Victor Stinner
2021-10-15bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)Victor Stinner
2021-10-14bpo-35134: Add Include/cpython/floatobject.h (GH-28957)Victor Stinner
2021-10-14bpo-21736: Set __file__ on frozen stdlib modules. (gh-28656)Eric Snow
2021-10-14bpo-45471: Do not set PyConfig.stdlib_dir in Py_SetPythonHome(). (gh-28954)Eric Snow
2021-10-14bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)Victor Stinner
2021-10-14bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)Dennis Sweeney