summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* #18389: Clarify that relpath does not access the file system.R David Murray2013-07-121-2/+4
|\
| * #18389: Clarify that relpath does not access the file system.R David Murray2013-07-121-2/+4
* | Closes #18433: Merged documentation update from 3.3.Vinay Sajip2013-07-121-3/+10
|\ \ | |/
| * Issue #18433: Clarified venv documentation.Vinay Sajip2013-07-121-3/+10
* | Merged changes.Vinay Sajip2013-07-121-0/+1
|\ \ | |/
| * Issue #18434: Updated example script to tidy up resources.Vinay Sajip2013-07-121-0/+1
| * Merged upstream changes.Vinay Sajip2013-07-124-3/+73
| |\
| | * Merge heads.R David Murray2013-07-124-3/+73
| | |\
* | | \ Merged upstream changes.Vinay Sajip2013-07-124-3/+73
|\ \ \ \
| * \ \ \ Merge heads.R David Murray2013-07-124-3/+73
| |\ \ \ \
| | * \ \ \ Merge: #18431: Decode encoded words in atoms in new email parser.R David Murray2013-07-124-3/+73
| | |\ \ \ \ | | | | |_|/ | | | |/| |
| | | * | | #18431: Decode encoded words in atoms in new email parser.R David Murray2013-07-124-3/+73
* | | | | | Closes #18435: Merged fix from 3.3.Vinay Sajip2013-07-121-7/+2
|\ \ \ \ \ \ | |/ / / / / |/| | | / / | | |_|/ / | |/| | |
| * | | | Issue #18435: Replaced simple attribute container class Context with types.Si...Vinay Sajip2013-07-121-7/+2
| | |_|/ | |/| |
* | | | Closes #18434: Merged documentation update from 3.3.Vinay Sajip2013-07-121-21/+28
|\ \ \ \ | |/ / / | | / / | |/ / |/| |
| * | Issue #18434: Updated example script in venv docs to use setuptools rather th...Vinay Sajip2013-07-121-21/+28
| |/
* | Issue #17845: Clarify the message setup.py prints upon successfullyBrett Cannon2013-07-122-2/+5
* | Issue #18342: Use the repr of a module name for ``from ... importBrett Cannon2013-07-124-1/+13
* | Issue #18415: Normalize what type of quotes are used with stringBrett Cannon2013-07-122-36/+36
* | Issue #18408: Fix constructors of _elementtree.cVictor Stinner2013-07-121-12/+15
* | Issue #18408: Fix create_extra() of _elementtree.c, raise MemoryError on memoryVictor Stinner2013-07-121-1/+3
* | Issue #18408: parser module: fix error handling in node2tuple()Victor Stinner2013-07-111-28/+52
* | Issue #18408: Fix parser.sequence2st() and parser.tuple2st(): raise MemoryErrorVictor Stinner2013-07-111-4/+15
* | Issue #18408: _pickle.c: Add missing PyErr_NoMemory() on memory allocation fa...Victor Stinner2013-07-111-2/+7
* | Issue #18408: _PyMemoTable_ResizeTable() now restores the old table ifVictor Stinner2013-07-111-1/+1
* | Issue #18408: pmerge() help of mro_implementation() now raises MemoryError onVictor Stinner2013-07-111-2/+4
* | Issue #18408: errors.c: in debug mode, calling PyErr_BadInternalCall() nowVictor Stinner2013-07-111-0/+1
* | Issue #18408: ceval.c: in debug mode, convert the PyErr_Occurred() check onVictor Stinner2013-07-111-0/+4
* | Issue #18408: Oh, I was wrong: Pickler_New() must call Py_DECREF() to destroyVictor Stinner2013-07-111-1/+1
* | Issue #18408: normalizestring() now raises MemoryError on memory allocation f...Victor Stinner2013-07-111-1/+1
* | Issue #18408: In debug mode, PyCFunction_Call() now checks if an exception wasVictor Stinner2013-07-111-7/+23
* | Issue #18408: parsetok() must not write into stderr on memory allocation errorVictor Stinner2013-07-111-1/+0
* | Issue #18408: Different fixes in _elementtree.c to handle correctly MemoryErrorVictor Stinner2013-07-111-8/+14
* | Cleanup _elementtree.cVictor Stinner2013-07-111-7/+6
* | Issue #18408: _elementtree.c now handles create_extra() failureVictor Stinner2013-07-111-12/+24
* | Issue #18408: Fix _Pickler_New() and _Unpickler_New(): initialize allVictor Stinner2013-07-111-22/+14
* | Issue #18408: parsetok() must not write into stderr on memory allocation errorVictor Stinner2013-07-111-1/+0
* | Issue #18408: Fix compiler_import() to handle PyUnicode_Substring() failure p...Victor Stinner2013-07-111-1/+4
* | Issue #18408: ste_new() initialize all attributes before handling errorVictor Stinner2013-07-111-13/+9
* | Issue #18408: slot_tp_str() must not fallback on slot_tp_repr() on errorVictor Stinner2013-07-111-19/+2
* | typeobject.c: remove trailing spacesVictor Stinner2013-07-111-3/+3
* | Merge: #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?=R David Murray2013-07-115-40/+62
|\ \ | |/
| * #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?=R David Murray2013-07-115-40/+62
* | Issue #17872: Fix a segfault in marshal.load() when input stream returnsSerhiy Storchaka2013-07-113-15/+35
|\ \ | |/
| * Issue #17872: Fix a segfault in marshal.load() when input stream returnsSerhiy Storchaka2013-07-113-15/+35
* | Issue #18085: Add missed const modifier for some entries in refcounts.dat.Serhiy Storchaka2013-07-111-76/+76
|\ \ | |/
| * Issue #18085: Add missed const modifier for some entries in refcounts.dat.Serhiy Storchaka2013-07-111-77/+77
* | Issue #18101: Tcl.split() now process strings nested in a tuple as itSerhiy Storchaka2013-07-113-0/+78
|\ \ | |/
| * Issue #18101: Tcl.split() now process strings nested in a tuple as itSerhiy Storchaka2013-07-113-0/+78
* | Issue #18338: `python --version` now prints version string to stdout, andSerhiy Storchaka2013-07-113-3/+8