index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-38605: Revert making 'from __future__ import annotations' the default (GH...
Pablo Galindo
2021-04-21
4
-120/+157
*
bpo-25460: Surround suggestions by quotes (GH-25473)
Pablo Galindo
2021-04-19
1
-2/+2
*
bpo-38530: Cover more error paths in error suggestion functions (GH-25462)
Pablo Galindo
2021-04-17
1
-2/+5
*
bpo-38530: Include builtins in NameError suggestions (GH-25460)
Pablo Galindo
2021-04-17
1
-1/+11
*
bpo-38530: Match exactly AttributeError and NameError when offering suggestio...
Pablo Galindo
2021-04-16
1
-2/+2
*
bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419)
Inada Naoki
2021-04-16
4
-3253/+3266
*
bpo-43846: Use less stack for large literals and calls (GH-25403)
Mark Shannon
2021-04-15
1
-50/+144
*
bpo-38530: Optimize the calculation of string sizes when offering suggestions...
Pablo Galindo
2021-04-14
1
-8/+10
*
bpo-38530: Make sure that failing to generate suggestions on failure will not...
Pablo Galindo
2021-04-14
2
-7/+5
*
bpo-38530: Offer suggestions on NameError (GH-25397)
Pablo Galindo
2021-04-14
2
-8/+69
*
bpo-38530: Offer suggestions on AttributeError (#16856)
Pablo Galindo
2021-04-14
2
-1/+157
*
bpo-43760: Speed up check for tracing in interpreter dispatch (#25276)
Mark Shannon
2021-04-13
3
-28/+38
*
bpo-43680: _pyio.open() becomes a static method (GH-25354)
Victor Stinner
2021-04-12
1
-3/+3
*
bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)
Victor Stinner
2021-04-10
1
-17/+16
*
bpo-43798: Add source location attributes to alias (GH-25324)
Matthew Suozzo
2021-04-10
1
-3/+97
*
bpo-43760: Streamline dispatch sequence for machines without computed gotos. ...
Mark Shannon
2021-04-08
1
-61/+52
*
bpo-42923: Fix _Py_DumpExtensionModules() for NULL sysdict (GH-25262)
Victor Stinner
2021-04-07
1
-6/+8
*
bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)
Victor Stinner
2021-04-07
2
-285/+294
*
bpo-43495 : Push missing frame block in compile.c (GH-24865)
tomKPZ
2021-04-07
1
-1/+10
*
bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)
Victor Stinner
2021-04-07
6
-286/+288
*
Correct micro release number and add a couple of asserts. (GH-25224)
Mark Shannon
2021-04-07
1
-3/+3
*
bpo-43105: Importlib now resolves relative paths when creating module spec ob...
Steve Dower
2021-04-07
1
-2436/+2494
*
bump the bytecode magic number (GH-25225)
Dennis Sweeney
2021-04-06
1
-1/+1
*
bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...
Brett Cannon
2021-04-06
3
-3603/+3670
*
bpo-43683: Handle generator entry in bytecode (GH-25138)
Mark Shannon
2021-04-06
4
-2586/+2656
*
bpo-42128: __match_args__ can't be a list anymore (GH-25203)
Brandt Bucher
2021-04-06
1
-8/+1
*
bpo-27129: Update magic numbers and bootstrapping for GH-25069 (GH-25172)
Dennis Sweeney
2021-04-04
1
-1/+1
*
bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)
Brett Cannon
2021-04-02
1
-523/+528
*
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Victor Stinner
2021-04-02
2
-45/+73
*
bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...
Mark Shannon
2021-04-01
6
-4515/+4498
*
bpo-42955: Add _overlapped to sys.stdlib_module_names (GH-25122)
Victor Stinner
2021-04-01
1
-0/+1
*
bpo-42134: Raise ImportWarning when calling find_module() in the import syste...
Brett Cannon
2021-03-30
2
-956/+971
*
bpo-43660: Fix crash when displaying exceptions with custom values for sys.st...
Pablo Galindo
2021-03-29
1
-1/+2
*
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki
2021-03-29
3
-2/+20
*
bpo-42136: Deprecate module_repr() as found in importlib (GH-25022)
Brett Cannon
2021-03-26
2
-1468/+1490
*
Move big block of macros out of function to improve readability. (GH-25020)
Mark Shannon
2021-03-25
1
-38/+40
*
Only check evalbreaker after calls and on backwards egdes. Makes sure that __...
Mark Shannon
2021-03-24
1
-46/+37
*
bpo-42137: have ModuleType.__repr__ prefer __spec__ over module_repr() (GH-24...
Brett Cannon
2021-03-24
1
-123/+124
*
bpo-31861: Fix reference leak in builtin_anext_impl() (GH-25008)
Pablo Galindo
2021-03-24
1
-1/+4
*
bpo-43244: Remove the pyarena.h header (GH-25007)
Victor Stinner
2021-03-24
6
-94/+95
*
bpo-43244: Remove parser_interface.h header file (GH-25001)
Victor Stinner
2021-03-24
2
-7/+9
*
bpo-43244: Add pycore_compile.h header file (GH-25000)
Victor Stinner
2021-03-23
6
-49/+15
*
bpo-31861: Add aiter and anext to builtins (#23847)
Joshua Bronson
2021-03-23
2
-1/+100
*
bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)
Victor Stinner
2021-03-23
9
-15/+10
*
Revert "bpo-40521: Make dtoa bigint free list per-interpreter (GH-24821)" (GH...
Victor Stinner
2021-03-22
1
-19/+17
*
bpo-43575: Use PEP 590 vectorcall to speed up map() (GH-24955)
Dong-hee Na
2021-03-22
1
-2/+43
*
bpo-43551: Fix PyImport_Import() for subinterpreters (GH-24929)
junyixie
2021-03-22
1
-16/+21
*
bpo-43517: Fix false positive in detection of circular imports (#24895)
Antoine Pitrou
2021-03-20
1
-1/+1
*
bpo-43244: Remove symtable.h header file (GH-24910)
Victor Stinner
2021-03-19
3
-75/+43
*
bpo-43244: Remove the PyAST_Validate() function (GH-24911)
Victor Stinner
2021-03-18
2
-2/+3
[next]