summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* | | Issue #6477: Merge with 3.3.Alexandre Vassalotti2013-12-011-1/+31
|\ \ \ | |/ /
| * | Issue #6477: Added support for pickling the types of built-in singletons.Alexandre Vassalotti2013-12-011-1/+31
* | | Merge with 3.3.Alexandre Vassalotti2013-11-301-1/+1
|\ \ \ | |/ /
| * | Fixed _pickle.Unpickler to handle empty persistent IDs correctly.Alexandre Vassalotti2013-11-301-1/+1
* | | Issue #17897: Optimized unpickle prefetching.Serhiy Storchaka2013-11-301-30/+22
* | | Issue #3693: Fix array obscure error message when given a str.Alexandre Vassalotti2013-11-301-18/+27
* | | Use PyDict_GetItemWithError instead of PyDict_GetItem in cpickle.Alexandre Vassalotti2013-11-291-12/+35
* | | Remove explicit empty tuple reuse in cpickle.Alexandre Vassalotti2013-11-281-12/+6
* | | Remove the tuple reuse optimization in _Pickle_FastCall.Alexandre Vassalotti2013-11-281-30/+15
* | | Issue #19815: Fix segfault when parsing empty namespace declaration.Eli Bendersky2013-11-281-1/+4
|\ \ \ | |/ /
| * | Fix indentation from previous commitEli Bendersky2013-11-281-2/+2
| * | Issue #19815: Fix segfault when parsing empty namespace declaration.Eli Bendersky2013-11-281-1/+4
* | | SNI was added in OpenSSL 0.9.8f [11 Oct 2007], tooChristian Heimes2013-11-281-1/+1
* | | Encapsulate cpickle global state in a dedicated object.Alexandre Vassalotti2013-11-281-270/+426
* | | Closes #19786: tracemalloc, remove the arbitrary limit of 100 framesVictor Stinner2013-11-271-21/+34
* | | Close #19798: replace "maximum" term with "peak" in get_traced_memory()Victor Stinner2013-11-271-12/+12
* | | add SO_PRIORITY (closes #19802)Benjamin Peterson2013-11-271-0/+3
* | | Combine the FastCall functions in cpickle.Alexandre Vassalotti2013-11-271-90/+42
* | | Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-19/+7
|\ \ \ | |/ /
| * | Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-19/+7
* | | tracemalloc: fix get_traced_memory() docstring for result typeVictor Stinner2013-11-261-1/+1
* | | Issue #18874: Fix typoVictor Stinner2013-11-261-1/+1
* | | Issue #18874: make it more explicit than set_reentrant() only accept 0 or 1Victor Stinner2013-11-261-0/+1
* | | Issue #18874: tracemalloc: Comment the trace_t structureVictor Stinner2013-11-261-0/+4
* | | Issue #18874: tracemalloc: explain the purpose of get_traces.tracebacks in a ...Victor Stinner2013-11-251-0/+2
* | | Issue #19752: Fix "HAVE_DEV_PTMX" implementation of os.openpty()Victor Stinner2013-11-251-1/+5
* | | Reverting e39db21df580 eagerly due to buildbot failures.Alexandre Vassalotti2013-11-251-33/+90
* | | Combine _Pickler_FastCall and _Unpickler_FastCall in cpickle.Alexandre Vassalotti2013-11-251-90/+33
* | | Issue #19739: Try to fix compiler warnings on 32-bit Windows.Alexandre Vassalotti2013-11-251-22/+21
* | | Close #19762: Fix name of _get_traces() and _get_object_traceback() functionVictor Stinner2013-11-251-2/+2
* | | Merge save_int into save_long in cpickle to remove redundant code.Alexandre Vassalotti2013-11-251-53/+33
* | | Simplify save_bool in cpickle.Alexandre Vassalotti2013-11-251-18/+11
* | | Use Clinic to process arguments in cpickle.Alexandre Vassalotti2013-11-241-257/+672
* | | Merge from 3.3.Stefan Krah2013-11-243-36/+326
|\ \ \ | |/ /
| * | 1) Prepare libmpdec for the 2.4.0 release. None of the following changes aff...Stefan Krah2013-11-243-36/+326
* | | Issue #19636: Fix usage of MAX_PATH in posixmodule.cVictor Stinner2013-11-241-14/+14
* | | Issue #19636: Fix posix__getvolumepathname(), raise an OverflowError ifVictor Stinner2013-11-241-5/+14
* | | Cosmetic fixesEli Bendersky2013-11-241-13/+8
* | | Clinic: fix "self converters" with METH_NOARGS functions.Larry Hastings2013-11-241-41/+46
* | | Issue #19741: cleanup tracemalloc_realloc()Victor Stinner2013-11-241-8/+15
* | | Remove code path in cpickle that does not exist in pickle.Alexandre Vassalotti2013-11-241-7/+1
* | | Issue #19741: tracemalloc: report tracemalloc_log_alloc() failure to the callerVictor Stinner2013-11-241-18/+29
* | | Make Ellipsis and NotImplemented picklable through the reduce protocol.Alexandre Vassalotti2013-11-241-32/+0
* | | Make built-in methods picklable through the reduce protocol.Alexandre Vassalotti2013-11-241-32/+0
* | | Issue #19741: fix tracemalloc_log_alloc(), handle _Py_HASHTABLE_SET() failureVictor Stinner2013-11-241-7/+16
* | | Make framing optional in pickle protocol 4.Alexandre Vassalotti2013-11-241-126/+34
* | | Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-239-56/+116
* | | Issue #19730: Argument Clinic now supports all the existing PyArgLarry Hastings2013-11-235-67/+182
* | | Issue #19722: Added opcode.stack_effect(), which accuratelyLarry Hastings2013-11-231-0/+116
* | | Issue #16203: Add re.fullmatch() function and regex.fullmatch() method,Serhiy Storchaka2013-11-233-25/+81