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
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() al...
Oren Milman
2017-10-08
1
-27/+49
*
bpo-31655: Validate keyword names in SimpleNamespace constructor. (#3909)
Serhiy Storchaka
2017-10-07
1
-1/+5
*
bpo-31709: Drop support for asynchronous __aiter__. (#3903)
Yury Selivanov
2017-10-06
1
-94/+0
*
bpo-31619: Fixed a ValueError when convert a string with large number of unde...
Serhiy Storchaka
2017-10-03
1
-4/+4
*
bpo-31336: Speed up type creation. (#3279)
scoder
2017-10-01
1
-52/+108
*
bpo-31579: Fixed a possible leak in enumerate() with large indices. (#3753)
Serhiy Storchaka
2017-09-26
1
-2/+6
*
bpo-26491 Defer DECREFs until enumobject is in a consistent state (#3747)
Raymond Hettinger
2017-09-25
1
-18/+30
*
bpo-31410: Optimized calling wrapper and classmethod descriptors. (#3481)
Serhiy Storchaka
2017-09-21
1
-29/+33
*
bpo-27541: Reprs of subclasses of some classes now contain actual type name. ...
Serhiy Storchaka
2017-09-21
1
-6/+10
*
bpo-30486: Make cell_set_contents() symbol private (#3668)
Victor Stinner
2017-09-20
1
-1/+1
*
bpo-31506: Improve the error message logic for object.__new__ and object.__in...
Serhiy Storchaka
2017-09-20
1
-10/+21
*
bpo-31492: Fix assertion failures in case of a module with a bad __name__ att...
Oren Milman
2017-09-19
1
-4/+1
*
bpo-31497: Add private helper _PyType_Name(). (#3630)
Serhiy Storchaka
2017-09-17
3
-25/+19
*
bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)
Eric Snow
2017-09-15
1
-3/+1
*
bpo-31338 (#3374)
Barry Warsaw
2017-09-15
6
-70/+46
*
bpo-30860: Fix deadcode in obmalloc.c (#3499)
Victor Stinner
2017-09-14
1
-2/+2
*
bpo-28411: Isolate PyInterpreterState.modules (#3575)
Eric Snow
2017-09-14
2
-5/+11
*
bpo-30860: Fix a refleak. (#3567)
Eric Snow
2017-09-14
1
-12/+15
*
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
Eric Snow
2017-09-14
3
-25/+17
*
bpo-31462: Remove trailing whitespaces. (#3564)
Serhiy Storchaka
2017-09-14
2
-2/+2
*
bpo-30860: Fix a refleak. (#3506)
Eric Snow
2017-09-12
1
-12/+15
*
bpo-31373: remove overly strict float range checks (#3486)
Benjamin Peterson
2017-09-11
1
-2/+2
*
replace custom table with pyctype (#3456)
Benjamin Peterson
2017-09-08
1
-12/+1
*
bpo-31393: Fix the use of PyUnicode_READY(). (#3451)
Serhiy Storchaka
2017-09-08
3
-6/+16
*
update all_name_chars comment after 9020ac7cce97dddad51b285fffc31fe4ddf60898 ...
Benjamin Peterson
2017-09-08
1
-2/+1
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
25
-634/+206
*
optimize all_name_chars (#3442)
Benjamin Peterson
2017-09-08
1
-14/+14
*
bpo-31344: Per-frame control of trace events (GH-3417)
Nick Coghlan
2017-09-08
1
-0/+4
*
bpo-31373: fix undefined floating-point demotions (#3396)
Benjamin Peterson
2017-09-07
1
-4/+6
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
2
-8/+0
*
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Eric Snow
2017-09-06
4
-171/+634
*
bpo-30860: Consolidate stateful runtime globals. (#2594)
Eric Snow
2017-09-06
4
-634/+171
*
bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (#2179)
Jonathan Eunice
2017-09-05
1
-2/+1
*
bpo-31347: _PyObject_FastCall_Prepend: do not call memcpy if args might not b...
Benjamin Peterson
2017-09-05
1
-3/+3
*
Fix terminology in comment and add more design rationale. (#3335)
Raymond Hettinger
2017-09-05
1
-3/+10
*
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
Eric Snow
2017-09-04
2
-5/+10
*
bpo-31279: Silence -Wstringop-overflow warning. (#3207)
Stefan Krah
2017-08-25
1
-1/+1
*
bpo-31095: fix potential crash during GC (GH-2974)
INADA Naoki
2017-08-24
2
-0/+9
*
bpo-31161: only check for parens error for SyntaxError (#3082)
Martijn Pieters
2017-08-22
1
-5/+10
*
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...
Stefan Krah
2017-08-21
3
-6/+7
*
bpo-30721: Add missing '?' to new error message (GH-3131)
Sanyam Khurana
2017-08-18
1
-1/+1
*
bpo-30721: Show correct syntax hint in Py3 when using Py2 redirection syntax ...
Sanyam Khurana
2017-08-18
1
-0/+15
*
bpo-29304: Simplify dict lookup functions (GH-2407)
INADA Naoki
2017-08-03
3
-270/+132
*
bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790)
Serhiy Storchaka
2017-08-03
1
-6/+10
*
bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyEval_Ev...
Zackery Spytz
2017-07-31
1
-1/+1
*
bpo-22207: Add checks for possible integer overflows in unicodeobject.c. (#2623)
Serhiy Storchaka
2017-07-11
1
-6/+12
*
bpo-30878: Fix error message when keyword arguments are passed (#2635)
Sylvain
2017-07-09
1
-4/+4
*
bpo-30789: Use a single memory block for co_extra. (#2555)
Serhiy Storchaka
2017-07-04
1
-39/+15
*
bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)
Serhiy Storchaka
2017-07-03
12
-186/+83
*
[security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)
Serhiy Storchaka
2017-06-28
1
-0/+14
[next]