summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch bySerhiy Storchaka2013-07-153-14/+18
|\ | | | | | | Févry Thibault.
| * Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch bySerhiy Storchaka2013-07-153-14/+18
| | | | | | | | Févry Thibault.
* | Closes #18452: fix several "occurrence" typos (reported by Févry Thibault).Ned Deily2013-07-143-4/+4
|\ \ | |/
| * Issue #18452: fix several "occurrence" typos (reported by Févry Thibault).Ned Deily2013-07-143-4/+4
| |
* | Issue #9893: remove an outdated mention of the Vim-related files.Brett Cannon2013-07-141-1/+0
| |
* | mergeRaymond Hettinger2013-07-143-2/+5
|\ \ | |/
| * Issue #18432: Fix unintended API change in the sched moduleRaymond Hettinger2013-07-143-2/+5
| |
* | Tweak the deque struct by moving the least used fields (maxlen and weakref) ↵Raymond Hettinger2013-07-141-1/+1
| | | | | | | | to the end.
* | Use a do-while loop in the inner loop for rotate (m is always greater than ↵Raymond Hettinger2013-07-141-2/+6
| | | | | | | | zero).
* | Move the freeblock() call outside the main loop to speed-up and simplify the ↵Raymond Hettinger2013-07-131-9/+15
| | | | | | | | block re-use logic.
* | Merge with 3.3Terry Jan Reedy2013-07-131-1/+4
|\ \ | |/
| * Issue #18365: convert buildbot errors to skips.Terry Jan Reedy2013-07-131-1/+4
| |
* | Merge with 3.3Terry Jan Reedy2013-07-135-8/+94
|\ \ | |/
| * Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch byTerry Jan Reedy2013-07-135-8/+94
| | | | | | | | | | Phil Webster. With that available, modify RstripExtension.py to stop deleting null slices, which caused a file to be marked as changed when it was not.
* | Merge: #18437: fix comment typo.R David Murray2013-07-131-1/+1
|\ \ | |/
| * #18437: fix comment typo.R David Murray2013-07-131-1/+1
| |
* | Merge with 3.3Terry Jan Reedy2013-07-132-8/+7
|\ \ | |/
| * Issue #18365: normalize whitespaceTerry Jan Reedy2013-07-132-8/+7
| |
* | Merge with 3.3Terry Jan Reedy2013-07-132-5/+449
|\ \ | |/
| * Issue #18365: Add mock Text class and test thereof versus tk.Text.Terry Jan Reedy2013-07-132-5/+449
| | | | | | | | Based on patches by Todd.Rovito and Phil Webster.
* | #18389: Clarify that relpath does not access the file system.R David Murray2013-07-121-2/+4
|\ \ | |/ | | | | Initial patch by Madison May.
| * #18389: Clarify that relpath does not access the file system.R David Murray2013-07-121-2/+4
| | | | | | | | Initial patch by Madison May.
* | 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
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is more to be done here in terms of accepting RFC invalid input that some mailers accept, but this covers the valid RFC places where encoded words can occur in structured headers.
* | | | | | Closes #18435: Merged fix from 3.3.Vinay Sajip2013-07-121-7/+2
|\ \ \ \ \ \ | |/ / / / / |/| | | / / | | |_|/ / | |/| | |
| * | | | Issue #18435: Replaced simple attribute container class Context with ↵Vinay Sajip2013-07-121-7/+2
| | |_|/ | |/| | | | | | | | | | types.SimpleNamespace.
* | | | 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 ↵Vinay Sajip2013-07-121-21/+28
| |/ | | | | | | than Distribute.
* | Issue #17845: Clarify the message setup.py prints upon successfullyBrett Cannon2013-07-122-2/+5
| | | | | | | | | | | | building Python but having some optional module which didn't build. Patch by Yogesh Chaudhari.
* | Issue #18342: Use the repr of a module name for ``from ... importBrett Cannon2013-07-124-1/+13
| | | | | | | | | | | | | | | | ...`` when an ImportError occurs. Other cases had already been switched over to using the repr. Thanks to Tomasz Maćkowiak for the patch.
* | Issue #18415: Normalize what type of quotes are used with stringBrett Cannon2013-07-122-36/+36
| | | | | | | | | | | | | | constants in importlib._bootstrap. Along the way clean up from string interpolation to use the repr explicitly. Initial patch by Madison May.
* | Issue #18408: Fix constructors of _elementtree.cVictor Stinner2013-07-121-12/+15
| | | | | | | | | | | | * Use Py_DECREF() instead of PyObject_GC_Del() to release correctly all resources * Raise MemoryError on memory allocation failure
* | Issue #18408: Fix create_extra() of _elementtree.c, raise MemoryError on memoryVictor Stinner2013-07-121-1/+3
| | | | | | | | allocation failure
* | Issue #18408: parser module: fix error handling in node2tuple()Victor Stinner2013-07-111-28/+52
| | | | | | | | Handle PyLong_FromLong() and PyUnicode_FromString() failures
* | Issue #18408: Fix parser.sequence2st() and parser.tuple2st(): raise MemoryErrorVictor Stinner2013-07-111-4/+15
| | | | | | | | | | | | on memory allocation failure Instead of ignoring the memory allocation failure and create invalid objects.
* | Issue #18408: _pickle.c: Add missing PyErr_NoMemory() on memory allocation ↵Victor Stinner2013-07-111-2/+7
| | | | | | | | failures
* | Issue #18408: _PyMemoTable_ResizeTable() now restores the old table ifVictor Stinner2013-07-111-1/+1
| | | | | | | | | | | | allocating a bigger table failed PyMemoTable destructor does crash if mt_table is NULL.
* | Issue #18408: pmerge() help of mro_implementation() now raises MemoryError onVictor Stinner2013-07-111-2/+4
| | | | | | | | | | | | | | memory allocation failure Replace also PyMem_Free() with PyMem_FREE() to be consistent with the rest of the function.
* | Issue #18408: errors.c: in debug mode, calling PyErr_BadInternalCall() nowVictor Stinner2013-07-111-0/+1
| | | | | | | | fails with an assertion error
* | Issue #18408: ceval.c: in debug mode, convert the PyErr_Occurred() check onVictor Stinner2013-07-111-0/+4
| | | | | | | | exception (when getting NULL) to an assertion to detect bugs earlier
* | Issue #18408: Oh, I was wrong: Pickler_New() must call Py_DECREF() to destroyVictor Stinner2013-07-111-1/+1
| | | | | | | | the newly created pickler, and not PyObject_GC_Del().
* | Issue #18408: normalizestring() now raises MemoryError on memory allocation ↵Victor Stinner2013-07-111-1/+1
| | | | | | | | failure