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-35081: Add Include/internal/pycore_tupleobject.h (GH-10705)
Victor Stinner
2018-11-25
2
-0/+2
*
bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672)
Victor Stinner
2018-11-23
2
-4/+21
*
bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)
Victor Stinner
2018-11-22
5
-0/+5
*
bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655)
Victor Stinner
2018-11-22
1
-9/+9
*
bpo-18407: win32_urandom() uses PY_DWORD_MAX (GH-10656)
Victor Stinner
2018-11-22
1
-4/+2
*
bpo-35059: Cast void* to PyObject* (GH-10650)
Victor Stinner
2018-11-22
1
-3/+4
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
3
-4/+7
*
bpo-35169: Improve error messages for forbidden assignments. (GH-10342)
Serhiy Storchaka
2018-11-20
1
-60/+46
*
bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606)
Victor Stinner
2018-11-20
2
-34/+39
*
bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executab...
Steve Dower
2018-11-18
2
-24/+57
*
bpo-28401: prevent Py_DEBUG builds from trying to import limited ABI modules ...
Stefano Rivera
2018-11-16
1
-0/+2
*
Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576)
Zackery Spytz
2018-11-16
1
-1/+3
*
bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)
Victor Stinner
2018-11-16
2
-5/+25
*
bpo-35233: InitConfigTests tests more config vars (GH-10541)
Victor Stinner
2018-11-14
1
-115/+76
*
bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524)
Victor Stinner
2018-11-13
1
-0/+75
*
bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)
Gregory P. Smith
2018-11-13
2
-3/+3
*
bpo-35214: Initial clang MemorySanitizer support (GH-10479)
Gregory P. Smith
2018-11-12
2
-1/+12
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
19
-30/+30
*
bpo-35177: Add dependencies between header files (GH-10361)
Victor Stinner
2018-11-11
7
-19/+2
*
bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434)
Victor Stinner
2018-11-09
2
-4/+4
*
bpo-35193: Fix an off by one error in the RETURN_VALUE case. (GH-10418)
Gregory P. Smith
2018-11-09
1
-10/+12
*
bpo-34726: Fix handling of hash-based pycs in zipimport. (GH-10327)
Elvis Pranskevichus
2018-11-07
1
-1018/+1055
*
bpo-35081: Add pycore_fileutils.h (GH-10371)
Victor Stinner
2018-11-06
3
-0/+3
*
bpo-35081: Add _PyCoreConfig_AsDict() (GH-10362)
Victor Stinner
2018-11-06
1
-0/+152
*
bpo-35133: Fix mistakes when concatenate string literals on different lines. ...
Serhiy Storchaka
2018-11-05
1
-1/+1
*
Simplify sys.breakpointhook implementation (#9519)
Anthony Sottile
2018-11-01
1
-9/+1
*
bpo-35081: And pycore_lifecycle.h and pycore_pathconfig.h (GH-10273)
Victor Stinner
2018-11-01
5
-16/+10
*
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner
2018-11-01
10
-65/+65
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
22
-34/+34
*
bpo-26558: Fix Py_FatalError() with GIL released (GH-10267)
Victor Stinner
2018-10-31
1
-10/+25
*
bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249)
Victor Stinner
2018-10-31
6
-0/+6
*
bpo-35081: Move Include/pyatomic.c to Include/internal/ (GH-10239)
Victor Stinner
2018-10-30
1
-0/+1
*
bpo-35081: Cleanup pystate.c and pystate.h (GH-10240)
Victor Stinner
2018-10-30
2
-25/+21
*
bpo-32030: Make _PySys_AddXOptionWithError() private (GH-10236)
Victor Stinner
2018-10-30
1
-3/+8
*
bpo-34523: Fix config_init_fs_encoding() for ASCII (GH-10232)
Victor Stinner
2018-10-30
1
-20/+22
*
bpo-33237: Improve AttributeError message for partially initialized module. (...
Serhiy Storchaka
2018-10-30
1
-21/+9
*
bpo-34876: Change the lineno of the AST for decorated function and class. (GH...
Serhiy Storchaka
2018-10-30
4
-2489/+2496
*
bpo-33331: Clean modules in the reversed order in PyImport_Cleanup(). (GH-6565)
Serhiy Storchaka
2018-10-29
2
-1789/+1750
*
bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-1...
Pablo Galindo
2018-10-28
2
-4/+4
*
bpo-35024: Remove redundant and possibly incorrect verbose message after writ...
Quentin Agren
2018-10-26
1
-1345/+1343
*
importlib: Fix typo in SourceLoader.path_stats docstring (GH-10052)
Quentin
2018-10-25
1
-1497/+1496
*
bpo-35029: Replace the SyntaxWarning exception with a SyntaxError. (GH-9999)
Serhiy Storchaka
2018-10-21
1
-11/+31
*
Fix typos in comments (GH-9905)
Quan Tian
2018-10-19
2
-3/+3
*
bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652)
Serhiy Storchaka
2018-10-19
1
-3/+3
*
bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)
Stéphane Wirtel
2018-10-17
1
-19/+5
*
bpo-34939: Allow annotated global names in module namespace (GH-9844)
Pablo Galindo
2018-10-14
1
-0/+1
*
Fix an incorrect check in compiler_try_except(). (GH-9810)
Zackery Spytz
2018-10-12
1
-1/+2
*
Fix a possible decref of a borrowed reference in symtable.c. (GH-9786)
Zackery Spytz
2018-10-11
1
-2/+4
*
closes bpo-34868: Improve error message with '_' is combined with an invalid ...
Benjamin Peterson
2018-10-02
1
-8/+9
*
bpo-34854: Fix compiling string annotations containing lambdas. (GH-9645)
Serhiy Storchaka
2018-09-30
1
-4/+7
[next]