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
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-30039: Don't run signal handlers while resuming a yield from stack (#1081)
Nathaniel J. Smith
2017-05-17
1
-0/+24
*
bpo-30038: fix race condition in signal delivery + wakeup fd (#1082)
Nathaniel J. Smith
2017-05-16
1
-7/+26
*
bpo-30242: resolve some undefined behaviours in struct (#1418)
Xiang Zhang
2017-05-15
1
-5/+9
*
bpo-30224: remove outdated checks in struct (#1374)
Xiang Zhang
2017-05-15
1
-47/+15
*
bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097)
INADA Naoki
2017-05-11
1
-0/+12
*
bpo-30285: Optimize case-insensitive matching and searching (#1482)
Serhiy Storchaka
2017-05-09
2
-1/+97
*
bpo-29990: Fix range checking in GB18030 decoder (#1495)
Xiang Zhang
2017-05-09
1
-1/+3
*
bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode...
Serhiy Storchaka
2017-05-05
2
-21/+57
*
bpo-30243: Fixed the possibility of a crash in _json. (#1420)
Serhiy Storchaka
2017-05-05
1
-66/+20
*
bpo-30215: Make re.compile() locale agnostic. (#1361)
Serhiy Storchaka
2017-05-05
3
-3/+74
*
bpo-30184: Add tests for invalid use of PyArg_ParseTupleAndKeywords. (#1316)
Serhiy Storchaka
2017-05-03
1
-2/+2
*
bpo-30103: Allow Uuencode in Python using backtick as zero instead of space (...
Xiang Zhang
2017-05-03
2
-11/+23
*
bpo-30205: Fix getsockname() for unbound AF_UNIX sockets on Linux (#1370)
Antoine Pitrou
2017-05-02
1
-3/+3
*
bpo-30228: FileIO seek() and tell() set seekable (#1384)
Victor Stinner
2017-05-02
1
-15/+21
*
restore *data* parameter of binascii.b2a_base64 to positional-only (#1352)
Xiang Zhang
2017-05-01
2
-4/+5
*
bpo-30101: Add support for curses.A_ITALIC. (#1015)
Eijebong
2017-04-26
1
-0/+3
*
timemodule.c: Cast PyUnicode_AsUTF8() to char* (#1294)
Victor Stinner
2017-04-26
1
-1/+1
*
tmtotuple(): use time_t for gmtoff (#1276)
Victor Stinner
2017-04-24
1
-3/+3
*
bpo-29960 _random.Random corrupted on exception in setstate(). (#1019)
bladebryan
2017-04-22
1
-1/+4
*
bpo-30125: Fix faulthandler.disable() on Windows (#1240)
Victor Stinner
2017-04-21
1
-24/+19
*
remove configure test for inline keyword (#1231)
Benjamin Peterson
2017-04-21
1
-3/+1
*
bpo-29802: Fix reference counting in module-level struct functions (#1213)
Serhiy Storchaka
2017-04-20
1
-0/+1
*
Only define get_zone() and get_gmtoff() if needed (#1193)
Victor Stinner
2017-04-20
1
-0/+2
*
bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). (#1110)
Serhiy Storchaka
2017-04-19
1
-20/+23
*
bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (...
Serhiy Storchaka
2017-04-19
1
-52/+79
*
bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)
Serhiy Storchaka
2017-04-19
8
-34/+72
*
bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)
Serhiy Storchaka
2017-04-16
22
-89/+89
*
bpo-10076: Compiled regular expression and match objects now are copyable. (#...
Serhiy Storchaka
2017-04-16
2
-164/+19
*
bpo-28765: Use concrete types API in _sre.c. (#1009)
Serhiy Storchaka
2017-04-16
1
-37/+37
*
bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is prese...
Xiang Zhang
2017-04-15
1
-8/+17
*
bpo-29738: Fix memory leak in _get_crl_dp (GH-526)
Olivier Vielpeau
2017-04-15
1
-7/+1
*
convert from long long to PyLong loselessly (#1106)
Benjamin Peterson
2017-04-13
1
-1/+1
*
Expand the PySlice_GetIndicesEx macro. (#1023)
Serhiy Storchaka
2017-04-08
5
-25/+24
*
bpo-29962: add math.remainder (#950)
Mark Dickinson
2017-04-05
1
-0/+103
*
bpo-29649: Improve struct.pack_into() boundary error messages (#424)
Andrew Nester
2017-04-04
1
-4/+30
*
Correct typo (#976)
Angus Hollands
2017-04-03
1
-1/+1
*
bpo-29953: Fix memory leaks in the replace() method of datetime and time (#927)
Serhiy Storchaka
2017-03-31
1
-11/+10
*
suppress compiler warnings in _ctypes_test (#902)
Benjamin Peterson
2017-03-31
1
-3/+3
*
bpo-29946: Fix "sqrtpi defined but not used" (#908)
Louie Lu
2017-03-30
1
-1/+3
*
bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#889)
T. Wouters
2017-03-30
1
-24/+28
*
bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...
Serhiy Storchaka
2017-03-30
1
-2/+2
*
bpo-29204: Emit warnings for already deprecated ElementTree features. (#773)
Serhiy Storchaka
2017-03-30
2
-3/+67
*
bpo-27863: Fixed multiple crashes in ElementTree. (#765)
Serhiy Storchaka
2017-03-30
1
-48/+52
*
bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)
Serhiy Storchaka
2017-03-30
17
-198/+60
*
bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502)
Serhiy Storchaka
2017-03-30
2
-24/+85
*
bpo-29878: Add global instances of int for 0 and 1. (#852)
Serhiy Storchaka
2017-03-30
9
-61/+24
*
bpo-29932: Fix small error message typos in arraymodule.c (GH-888)
Sylvain
2017-03-29
1
-3/+3
*
bpo-29919: Remove unused imports found by pyflakes (#137)
Victor Stinner
2017-03-27
1
-1/+0
*
Simplify partial.__new__. (#813)
Serhiy Storchaka
2017-03-25
1
-8/+2
*
faulthandler: Restore the old sigaltstack during teardown (#777)
Christophe Zeitouny
2017-03-23
1
-1/+16
[next]