summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* tmtotuple(): use time_t for gmtoff (#1276)Victor Stinner2017-04-241-3/+3
* bpo-29960 _random.Random corrupted on exception in setstate(). (#1019)bladebryan2017-04-221-1/+4
* bpo-30125: Fix faulthandler.disable() on Windows (#1240)Victor Stinner2017-04-211-24/+19
* remove configure test for inline keyword (#1231)Benjamin Peterson2017-04-211-3/+1
* bpo-29802: Fix reference counting in module-level struct functions (#1213)Serhiy Storchaka2017-04-201-0/+1
* Only define get_zone() and get_gmtoff() if needed (#1193)Victor Stinner2017-04-201-0/+2
* bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). (#1110)Serhiy Storchaka2017-04-191-20/+23
* bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (...Serhiy Storchaka2017-04-191-52/+79
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)Serhiy Storchaka2017-04-198-34/+72
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-1622-89/+89
* bpo-10076: Compiled regular expression and match objects now are copyable. (#...Serhiy Storchaka2017-04-162-164/+19
* bpo-28765: Use concrete types API in _sre.c. (#1009)Serhiy Storchaka2017-04-161-37/+37
* bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is prese...Xiang Zhang2017-04-151-8/+17
* bpo-29738: Fix memory leak in _get_crl_dp (GH-526)Olivier Vielpeau2017-04-151-7/+1
* convert from long long to PyLong loselessly (#1106)Benjamin Peterson2017-04-131-1/+1
* Expand the PySlice_GetIndicesEx macro. (#1023)Serhiy Storchaka2017-04-085-25/+24
* bpo-29962: add math.remainder (#950)Mark Dickinson2017-04-051-0/+103
* bpo-29649: Improve struct.pack_into() boundary error messages (#424)Andrew Nester2017-04-041-4/+30
* Correct typo (#976)Angus Hollands2017-04-031-1/+1
* bpo-29953: Fix memory leaks in the replace() method of datetime and time (#927)Serhiy Storchaka2017-03-311-11/+10
* suppress compiler warnings in _ctypes_test (#902)Benjamin Peterson2017-03-311-3/+3
* bpo-29946: Fix "sqrtpi defined but not used" (#908)Louie Lu2017-03-301-1/+3
* bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#889)T. Wouters2017-03-301-24/+28
* bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...Serhiy Storchaka2017-03-301-2/+2
* bpo-29204: Emit warnings for already deprecated ElementTree features. (#773)Serhiy Storchaka2017-03-302-3/+67
* bpo-27863: Fixed multiple crashes in ElementTree. (#765)Serhiy Storchaka2017-03-301-48/+52
* bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)Serhiy Storchaka2017-03-3017-198/+60
* bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502)Serhiy Storchaka2017-03-302-24/+85
* bpo-29878: Add global instances of int for 0 and 1. (#852)Serhiy Storchaka2017-03-309-61/+24
* bpo-29932: Fix small error message typos in arraymodule.c (GH-888)Sylvain2017-03-291-3/+3
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-271-1/+0
* Simplify partial.__new__. (#813)Serhiy Storchaka2017-03-251-8/+2
* faulthandler: Restore the old sigaltstack during teardown (#777)Christophe Zeitouny2017-03-231-1/+16
* Use NULL rather than 0. (#778)Serhiy Storchaka2017-03-236-13/+13
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-239-30/+30
* bpo-29728: Provide socket.TCP_NOTSENT_LOWAT (#477)Nathaniel J. Smith2017-03-231-0/+3
* bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...Serhiy Storchaka2017-03-217-16/+16
* bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. (#514)Serhiy Storchaka2017-03-193-8/+45
* bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords ar...Michael Seifert2017-03-151-1/+4
* bpo-29735: Optimize partial_call(): avoid tuple (#516)Victor Stinner2017-03-141-35/+80
* bpo-29730: replace some calls to PyNumber_Check and improve some error messag...Oren Milman2017-03-124-10/+20
* bpo-28667: Fix a compile warning on FreeBSD when compare with FD_SETSIZE. (#501)Serhiy Storchaka2017-03-121-4/+4
* bpo-26121: Revert to using the own implementations of lgamma and gamma on all...Serhiy Storchaka2017-03-121-31/+0
* bpo-20185: Convert the resource moduel to Argument Clinic. (#545)Serhiy Storchaka2017-03-122-36/+239
* bpo-29723: Consistently configure sys.path[0] (#575)Nick Coghlan2017-03-121-28/+44
* bpo-15695: Implemented StgDict.__sizeof__(). (#509)Serhiy Storchaka2017-03-121-1/+21
* bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)Serhiy Storchaka2017-03-1210-62/+62
* bpo-26121: Use C library implementation for math functions: (#515)Serhiy Storchaka2017-03-111-1/+45
* bpo-29770: remove outdated PYO related info (GH-590)Xiang Zhang2017-03-112-4/+4
* bpo-29741: Clean up C implementations of BytesIO and StringIO. (#606)orenmn2017-03-104-120/+68