summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-073-79/+46
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-071-0/+3
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-062-42/+17
* Delete orphaned comment (#29917)Guido van Rossum2021-12-051-5/+0
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-031-0/+35
* bpo-45950: Introduce Bootstrap Python again (#29859)Christian Heimes2021-12-031-45/+0
* bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney2021-12-033-23/+224
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-035-803/+354
* bpo-40280: Optimize ints and and startup on wasm (GH-29887)Christian Heimes2021-12-021-1/+5
* bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)Victor Stinner2021-12-021-5/+6
* bpo-45753: Interpreter internal tweaks (GH-29575)Mark Shannon2021-12-011-139/+194
* bpo-45711: Change exc_info related APIs to derive type and traceback from the...Irit Katriel2021-11-302-32/+51
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-292-30/+20
* Remove misleading comment in the AST optimizer (#29825)Serhiy Storchaka2021-11-291-1/+0
* bpo-45915: use fcntl(fd, F_GETFD) in is_valid_fd() (GH-29821)Christian Heimes2021-11-281-3/+15
* bpo-45614: Fix traceback display for exceptions with invalid module name (GH-...Irit Katriel2021-11-271-1/+1
* bpo-45711: use exc_value instead of exc_type to determine if exc_info is vali...Irit Katriel2021-11-254-36/+91
* bpo-45020: Fix strict-prototypes warning (GH-29755)Christian Heimes2021-11-241-1/+1
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-237-62/+93
* bpo-45850: Implement deep-freeze on Windows (#29648)Guido van Rossum2021-11-221-5/+0
* bpo-45871: Refactor except matcher validation into a separate function so tha...Irit Katriel2021-11-221-23/+33
* bpo-45813: Make sure that frame->generator is NULLed when generator is deallo...Mark Shannon2021-11-221-0/+3
* bpo-45848: Allow the parser to get error lines from encoded files (GH-29646)Pablo Galindo Salgado2021-11-201-4/+14
* Fix link to exception handling notes (GH-29617)Irit Katriel2021-11-191-1/+1
* bpo-45709: Fix tracing when exception is handled. (GH-29638)Mark Shannon2021-11-191-4/+1
* bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney2021-11-193-21/+147
* bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...Mark Shannon2021-11-183-56/+107
* bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)Dong-hee Na2021-11-183-12/+60
* bpo-45826: Fix a crash in suggestions.c by checking for `traceback is None` (...Dennis Sweeney2021-11-171-3/+11
* bpo-42540: reallocation of id_mutex should not force default allocator (GH-29...Sam Gross2021-11-171-1/+4
* bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596)Victor Stinner2021-11-171-0/+22
* bpo-45636: Simplify BINARY_OP (GH-29565)Brandt Bucher2021-11-161-83/+34
* bpo-45753: Make recursion checks more efficient. (GH-29524)Mark Shannon2021-11-166-36/+40
* bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)Victor Stinner2021-11-151-3/+0
* bpo-45636: Remove the old %-formatting fast-path (GH-29532)Brandt Bucher2021-11-152-12/+8
* bpo-45711: assert that the type of exc_info is redundant (GH-29518)Irit Katriel2021-11-121-0/+25
* bpo-45773: Stop "optimizing" certain jump patterns (GH-29505)Brandt Bucher2021-11-111-76/+41
* bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher2021-11-114-700/+338
* bpo-45696: Deep-freeze selected modules (GH-29118)Guido van Rossum2021-11-114-32/+120
* bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)Irit Katriel2021-11-102-10/+5
* bpo-45292: [PEP 654] Update traceback display code to work with exception gro...Irit Katriel2021-11-052-72/+363
* bpo-45688: Add _scproxy to sys.stdlib_module_names (GH-29358)Christian Heimes2021-11-021-0/+1
* bpo-45379: clarify FROZEN_EXCLUDED and FROZEN_INVALID documentation (GH-29189)Filipe Laíns2021-10-291-2/+7
* bpo-45395: Make custom frozen modules additions instead of replacements. (gh-...Eric Snow2021-10-282-53/+125
* bpo-45379: add custom error string for FROZEN_DISABLED (GH-29190)Filipe Laíns2021-10-281-1/+3
* Store actual ints, not pointers to them in the interpreter state. (GH-29274)Mark Shannon2021-10-281-3/+1
* bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon2021-10-282-63/+100
* bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)Ken Jin2021-10-281-0/+6
* bpo-45637: Store the frame pointer in the cframe (GH-29267)Mark Shannon2021-10-285-31/+32
* Don't make a call at the C level when calling bound-methods from Python code....Mark Shannon2021-10-271-1/+14