summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue #19500: Add client-side SSL session resumption to the ssl module.Christian Heimes2016-09-101-2/+370
* #28067: Fixed another typo.Alexander Belopolsky2016-09-101-1/+1
* Issue 28043: SSLContext has improved default settingsChristian Heimes2016-09-101-0/+31
* #28067: Fixed a typo.Alexander Belopolsky2016-09-101-1/+1
* Closes #28067: Do not call localtime (gmtime) in datetime module.Alexander Belopolsky2016-09-101-42/+60
* Issue #27137: align Python & C implementations of functools.partialNick Coghlan2016-09-101-1/+1
* Issue #28019: itertools.count() no longer rounds non-integer step in rangeSerhiy Storchaka2016-09-101-16/+29
|\
| * Issue #28019: itertools.count() no longer rounds non-integer step in rangeSerhiy Storchaka2016-09-101-16/+29
* | Don't run garbage collection on interpreter exit if it was explicitly disabledŁukasz Langa2016-09-101-0/+9
* | Issue #27810: Rerun Argument Clinic on all modulesVictor Stinner2016-09-1020-390/+391
* | fix dummy macroBenjamin Peterson2016-09-101-1/+2
* | DTrace support: function calls, GC activity, line executionŁukasz Langa2016-09-101-0/+8
* | Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patc...Steve Dower2016-09-101-10/+4
|\ \ | |/
| * Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patc...Steve Dower2016-09-101-10/+4
| * Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-079-9/+9
* | Issue #26331: Implement the parsing part of PEP 515.Brett Cannon2016-09-091-4/+8
* | remove --with(out)-signal-module, since the signal module is non-optionalBenjamin Peterson2016-09-092-3/+1
* | Issue #27781: Fixes uninitialized fd when !MS_WINDOWS and !HAVE_OPENATSteve Dower2016-09-091-2/+3
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-091-0/+1
* | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-091-0/+1
* | Issue 18550: Check return value of ioctl() / fnctl() in internal_setblockingChristian Heimes2016-09-081-20/+41
* | Add NULL checks to the initializer of the locale moduleChristian Heimes2016-09-081-34/+20
* | replace PyInt16 with int16_tBenjamin Peterson2016-09-081-14/+11
* | Add error checking to PyInit_pyexpactChristian Heimes2016-09-081-1/+11
* | Use PyModule_AddIntMacro() in signal moduleChristian Heimes2016-09-081-129/+86
* | Check return value of PyList_Append() in Py_Main(). CID 1353200Christian Heimes2016-09-081-1/+2
* | Issue #1602: Windows console doesn't input or print Unicode (PEP 528)Steve Dower2016-08-314-3/+1458
* | Add a new private version to the builtin dict typeVictor Stinner2016-09-081-0/+16
* | use Py_MAXBenjamin Peterson2016-09-081-1/+1
* | Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower2016-09-085-109/+18
* | Fix mismatched if blocks in posixmodule.c.Steve Dower2016-09-081-2/+1
* | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-085-681/+384
* | clinic: PY_LONG_LONG -> long longBenjamin Peterson2016-09-082-59/+17
* | fix a PY_LONG_LONG stragglerBenjamin Peterson2016-09-081-1/+1
* | more PY_LONG_LONG to long longBenjamin Peterson2016-09-089-60/+60
* | sha3: let's keep it simple and always allocate enough extra space for uint64_...Christian Heimes2016-09-081-3/+2
* | Issue #26798: Coverity complains about potential memcpy() of overlapped regio...Christian Heimes2016-09-084-4/+4
* | Issue #16113: SHA3: allocate extra memory for lane extraction and check retur...Christian Heimes2016-09-081-4/+12
* | make sure expected values are interpreted as doublesBenjamin Peterson2016-09-081-1/+1
* | Issue #27570: Merge null pointer fixes from 3.5Martin Panter2016-09-073-13/+25
|\ \ | |/
| * Issue #27570: Avoid zero-length memcpy() calls with null source pointersMartin Panter2016-09-073-13/+25
* | more linux -> __linux__Benjamin Peterson2016-09-073-3/+3
* | use the '__linux__' instead 'linux' preprocessor defineBenjamin Peterson2016-09-071-4/+4
* | Eliminate a tautological-pointer-compare warning found by Clang.Brett Cannon2016-09-071-9/+5
* | require C99 boolBenjamin Peterson2016-09-072-23/+8
* | replace PY_SIZE_MAX with SIZE_MAXBenjamin Peterson2016-09-074-5/+5
* | Issue #16113: one more C90 violation in big endian code.Christian Heimes2016-09-071-1/+1
* | Issue #16113: take 2 on big endian machines.Christian Heimes2016-09-071-9/+11
* | Issue #16113: KeccakP-1600-opt64 does not support big endian platforms yet.Christian Heimes2016-09-071-1/+4
* | Issue #16113: Add SHA-3 and SHAKE support to hashlib module.Christian Heimes2016-09-0720-0/+6299