| Commit message (Expand) | Author | Age | Files | Lines |
* | #6774: explain shutdown() behavior varying with platform. | Georg Brandl | 2010-07-11 | 1 | -1/+3 |
|
|
* | Issue2007: Removing reference to MSIE Cookie handling by mechanize. Suggested... | Senthil Kumaran | 2010-07-11 | 1 | -9/+2 |
|
|
* | Add missing docs for re module 'purge' function. | R. David Murray | 2010-07-10 | 1 | -0/+5 |
|
|
* | Fix 'refleak' introduced by fnmatch cache purge tests. | R. David Murray | 2010-07-10 | 1 | -0/+7 |
|
|
* | #8564: update docs on integrating doctest/unittest with unittest(2) test disc... | Georg Brandl | 2010-07-10 | 1 | -8/+6 |
|
|
* | #8456: fix signature of sqlite3.connect(). | Georg Brandl | 2010-07-10 | 1 | -1/+1 |
|
|
* | #8338: fix outdated class name. | Georg Brandl | 2010-07-10 | 1 | -2/+2 |
|
|
* | Emphasize role of count for Pascal string. | Georg Brandl | 2010-07-10 | 1 | -11/+9 |
|
|
* | Fix markup. | Georg Brandl | 2010-07-10 | 2 | -4/+8 |
|
|
* | Adding versionchanged to the various Windows os.symlink additions, along | Brian Curtin | 2010-07-09 | 2 | -7/+15 |
|
|
* | Implement #1578269. Patch by Jason R. Coombs. | Brian Curtin | 2010-07-08 | 2 | -8/+28 |
|
|
* | Minor improvements to logging documentation. | Vinay Sajip | 2010-07-06 | 1 | -1/+6 |
|
|
* | Change 'lowered' to 'lowercased' | Senthil Kumaran | 2010-07-06 | 1 | -1/+1 |
|
|
* | Fix: Issue9091 Minor documentation clarification. | Senthil Kumaran | 2010-07-05 | 1 | -1/+2 |
|
|
* | Make importlib.abc.SourceLoader the primary mechanism for importlib. | Brett Cannon | 2010-07-03 | 1 | -2/+5 |
|
|
* | Fix Issue5468 - urlencode to handle bytes and other alternate encodings. | Senthil Kumaran | 2010-07-03 | 1 | -17/+23 |
|
|
* | Remove the need for a "()" empty argument list after opcodes. | Georg Brandl | 2010-07-03 | 1 | -62/+70 |
|
|
* | Use the right role. | Georg Brandl | 2010-07-03 | 1 | -1/+1 |
|
|
* | Wrap and use the correct directive. | Georg Brandl | 2010-07-03 | 1 | -1/+7 |
|
|
* | Merged revisions 82476 via svnmerge from | Mark Dickinson | 2010-07-03 | 1 | -1/+1 |
|
|
* | Issue 6507: accept source strings directly in dis.dis(). Original patch by Da... | Nick Coghlan | 2010-07-03 | 1 | -4/+7 |
|
|
* | Merged revisions 82455,82457,82459 via svnmerge from | Ezio Melotti | 2010-07-02 | 1 | -24/+155 |
|
|
* | Some people have mistaken Python bytecode as being stable and unchanging. In | Brett Cannon | 2010-07-02 | 1 | -3/+4 |
|
|
* | Merged revisions 82446 via svnmerge from | Mark Dickinson | 2010-07-02 | 1 | -35/+61 |
|
|
* | Merged revisions 82433 via svnmerge from | Georg Brandl | 2010-07-02 | 1 | -15/+15 |
|
|
* | Merged revisions 82420 via svnmerge from | Benjamin Peterson | 2010-07-01 | 1 | -1/+1 |
|
|
* | Issue 9110. Adding ContextDecorator to contextlib. This enables the creation ... | Michael Foord | 2010-06-30 | 1 | -0/+57 |
|
|
* | Merged revisions 82379 via svnmerge from | Mark Dickinson | 2010-06-29 | 1 | -1/+5 |
|
|
* | Make a sentence a little less awkward. | Brett Cannon | 2010-06-29 | 1 | -2/+1 |
|
|
* | Added information about pickle security and SocketHandler, and some cross-ref... | Vinay Sajip | 2010-06-29 | 1 | -2/+34 |
|
|
* | Merged revisions 82334 via svnmerge from | Senthil Kumaran | 2010-06-28 | 1 | -2/+2 |
|
|
* | Move importlib.abc.SourceLoader to _bootstrap. | Brett Cannon | 2010-06-28 | 1 | -1/+2 |
|
|
* | fix versionchanged | Benjamin Peterson | 2010-06-28 | 2 | -3/+3 |
|
|
* | Merged revisions 77402,77505,77510 via svnmerge from | Benjamin Peterson | 2010-06-28 | 1 | -9/+35 |
|
|
* | Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader. | Brett Cannon | 2010-06-27 | 1 | -111/+107 |
|
|
* | Merged revisions 81499,81506 via svnmerge from | Benjamin Peterson | 2010-06-27 | 1 | -0/+2 |
|
|
* | Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,... | Benjamin Peterson | 2010-06-27 | 10 | -90/+600 |
|
|
* | Add a link to PEP 3147 from the importlib docs. | Brett Cannon | 2010-06-27 | 1 | -0/+3 |
|
|
* | #9064: accept number of frames for "up" and "down" commands in pdb. | Georg Brandl | 2010-06-27 | 1 | -4/+6 |
|
|
* | #9018: os.path.normcase() now raises a TypeError if the argument is not str o... | Ezio Melotti | 2010-06-25 | 1 | -0/+1 |
|
|
* | Minor comment formatting. | Senthil Kumaran | 2010-06-22 | 1 | -1/+1 |
|
|
* | Minor docs issue. | Senthil Kumaran | 2010-06-22 | 1 | -1/+1 |
|
|
* | Issue #9005: Prevent utctimetuple() from producing year 0 or year 10,000. | Alexander Belopolsky | 2010-06-21 | 1 | -4/+4 |
|
|
* | Revert r82089. Commit was intended for a branch. | Jean-Paul Calderone | 2010-06-19 | 1 | -78/+3 |
|
|
* | merge forward from the python 2.x branch | Jean-Paul Calderone | 2010-06-19 | 1 | -3/+78 |
|
|
* | Added a new line at the end of the file. | Alexander Belopolsky | 2010-06-18 | 1 | -1/+1 |
|
|
* | Issue #6641: The datetime.strptime method now supports the %z directive. | Alexander Belopolsky | 2010-06-17 | 1 | -0/+7 |
|
|
* | Issue #850997: mbcs encoding (Windows only) handles errors argument: strict | Victor Stinner | 2010-06-16 | 1 | -0/+17 |
|
|
* | Merged revisions 82026 via svnmerge from | Senthil Kumaran | 2010-06-16 | 1 | -2/+4 |
|
|
* | Merged revisions 82018 via svnmerge from | Senthil Kumaran | 2010-06-16 | 1 | -1/+23 |
|
|