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
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-39943: Properly const the pointers in dictkeys_get_index (GH-19170)
Andy Lester
2020-03-26
1
-5/+5
*
bpo-40067: Improve error messages for multiple star expressions in assignment...
Furkan Önder
2020-03-26
4
-3/+11
*
bpo-39947: Add PyThreadState_GetID() function (GH-19163)
Victor Stinner
2020-03-25
6
-2/+25
*
bpo-39947: Add _PyThreadState_GetDict() function (GH-19160)
Victor Stinner
2020-03-25
3
-11/+23
*
bpo-19698: Document when importlib.machinery.FrozenImporter gained spec-relat...
Brett Cannon
2020-03-25
1
-0/+4
*
bpo-39947: Use PyThreadState_GetFrame() (GH-19159)
Victor Stinner
2020-03-25
2
-4/+6
*
bpo-40016: re docstring: Clarify relationship of inline and argument flags (#...
Ram Rachum
2020-03-25
2
-2/+5
*
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
Victor Stinner
2020-03-25
15
-109/+157
*
bpo-40050: Rephrase NEWS entry (GH-19148)
Victor Stinner
2020-03-25
1
-3/+3
*
Use calloc-based functions, not malloc. (GH-19152)
Andy Lester
2020-03-25
10
-38/+17
*
bpo-1635741: Port _functools module to multiphase initialization (PEP 489) (G...
Paulo Henrique Silva
2020-03-25
2
-28/+34
*
bpo-1635741: Port operator module to multiphase initialization (PEP 489) (GH-...
Paulo Henrique Silva
2020-03-25
2
-23/+28
*
bpo-36144: Add union operators to WeakValueDictionary584 (#19127)
Curtis Bucher
2020-03-25
4
-0/+60
*
bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)
Dong-hee Na
2020-03-24
12
-134/+67
*
bpo-40029 mark test_importlib.test_zip as requiring zlib (#19105)
Roman Yurchak
2020-03-24
1
-0/+4
*
bpo-1635741: Port _weakref extension module to multiphase initialization (PEP...
Victor Stinner
2020-03-24
2
-21/+38
*
bpo-40014: Fix os.getgrouplist() (GH-19126)
Victor Stinner
2020-03-24
2
-25/+29
*
bpo-40013: Clarify documentation of restval in csv.DictReader (GH-19099)
Juhana Jauhiainen
2020-03-24
1
-1/+2
*
bpo-40050: Fix importlib._bootstrap_external (GH-19135)
Victor Stinner
2020-03-24
3
-1757/+1745
*
Clarify a guarantee of the logging module. (GH-19132)
Gregory P. Smith
2020-03-24
1
-0/+1
*
bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120)
Victor Stinner
2020-03-24
4
-30/+14
*
bpo-39689: Do not use native packing for format "?" with standard size (GH-18...
Stefan Krah
2020-03-24
1
-0/+3
*
closes bpo-40017: Add CLOCK_TAI constant to the time module. (GH-19096)
Russell Owen
2020-03-24
3
-1/+16
*
Updated documentation for FOR_ITER (GH-19113)
laike9m
2020-03-24
1
-1/+1
*
Revert "bpo-1635741: Port _weakref extension module to multiphase initializat...
Victor Stinner
2020-03-23
1
-37/+21
*
Post 3.9.0a5
Łukasz Langa
2020-03-23
1
-1/+1
*
Merge tag 'v3.9.0a5'
Łukasz Langa
2020-03-23
129
-315/+1381
|
\
|
*
Python 3.9.0a5
v3.9.0a5
Łukasz Langa
2020-03-23
129
-315/+1381
*
|
bpo-36144: Add union operators to WeakKeyDictionary (#19106)
Curtis Bucher
2020-03-23
4
-0/+60
*
|
bpo-40036: Deleting duplicates in itertoolsmodule.c (GH-18958)
AlphaHot
2020-03-23
1
-26/+0
*
|
bpo-36144: Add PEP 584 operators to collections.ChainMap (#18832)
Curtis Bucher
2020-03-23
5
-0/+69
*
|
bpo-40014: Fix os.getgrouplist() on macOS (GH-19118)
Victor Stinner
2020-03-23
2
-0/+22
*
|
bpo-1635741: Port time module to multiphase initialization (PEP 489) (GH-19107)
Paulo Henrique Silva
2020-03-23
2
-51/+54
|
/
*
bpo-39830: Add zipfile.Path to __all__ (GH-19115)
Zackery Spytz
2020-03-23
2
-1/+3
*
bpo-39999: Improve compatibility of the ast module. (GH-19056)
Serhiy Storchaka
2020-03-22
10
-22/+49
*
bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516)
Ronald Oussoren
2020-03-22
5
-1/+34
*
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na
2020-03-22
10
-42/+52
*
bpo-36543: Remove the xml.etree.cElementTree module. (GH-19108)
Serhiy Storchaka
2020-03-22
2
-18/+0
*
bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. ...
Serhiy Storchaka
2020-03-21
5
-14/+32
*
bpo-24916: Remove an outdated comment. (GH-19101)
Serhiy Storchaka
2020-03-21
1
-2/+0
*
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
Victor Stinner
2020-03-20
7
-34/+14
*
bpo-39947: Add PyThreadState_GetFrame() function (GH-19092)
Victor Stinner
2020-03-20
6
-5/+33
*
bpo-40010: Optimize pending calls in multithreaded applications (GH-19091)
Victor Stinner
2020-03-20
3
-6/+22
*
bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087)
Victor Stinner
2020-03-20
5
-53/+49
*
bpo-40010: Pass tstate to ceval GIL functions (GH-19077)
Victor Stinner
2020-03-20
2
-138/+199
*
bpo-1635741: Port _weakref extension module to multiphase initialization (PEP...
Hai Shi
2020-03-20
2
-21/+38
*
bpo-39797 Changes to socketserver.BaseServer's shutdown() method. (GH-18929)
amaajemyfren
2020-03-20
1
-0/+2
*
bpo-40019: Skip test_gdb if Python was optimized (GH-19081)
Victor Stinner
2020-03-20
3
-7/+20
*
bpo-39877: 4th take_gil() fix for daemon threads (GH-19080)
Victor Stinner
2020-03-19
1
-22/+23
*
Fix "versionchanged" for pow named arguments (GH-19042)
Mark Dickinson
2020-03-19
1
-1/+1
[next]