Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #16804: Fix 'python -S -m site' failure. | Meador Inge | 2013-04-14 | 2 | -4/+9 |
|\ | | | | | | | | | | | | | | | This commit fixes a bug in the 'site' module that was causing an exception to incorrectly be thrown when running 'python -S -m site'. The problem was that 'USER_BASE' and 'USER_SITE' were being accessed before they were properly initialized. The code has been changed to use 'getuserbase' and 'getusersitepackages' instead so that the initialization always happens. | ||||
| * | Issue #16804: Fix 'python -S -m site' failure. | Meador Inge | 2013-04-14 | 2 | -4/+9 |
| | | | | | | | | | | | | | | | | This commit fixes a bug in the 'site' module that was causing an exception to incorrectly be thrown when running 'python -S -m site'. The problem was that 'USER_BASE' and 'USER_SITE' were being accessed before they were properly initialized. The code has been changed to use 'getuserbase' and 'getusersitepackages' instead so that the initialization always happens. | ||||
* | | Issue #17693: CJK encoders now use the new Unicode API (PEP 393) | Victor Stinner | 2013-04-14 | 9 | -418/+430 |
| | | |||||
* | | remove pointless change | Benjamin Peterson | 2013-04-13 | 1 | -1/+1 |
| | | |||||
* | | properly lookup the __round__ special method (closes #17722) | Benjamin Peterson | 2013-04-13 | 3 | -15/+15 |
| | | |||||
* | | Fix misindent. This would test half less possibilities. | Antoine Pitrou | 2013-04-13 | 1 | -1/+1 |
| | | |||||
* | | Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal. | Antoine Pitrou | 2013-04-13 | 4 | -73/+8 |
| | | | | | | | | Initial patch by Daniel Riti. | ||||
* | | Issue #16061: Speed up str.replace() for replacing 1-character strings. | Serhiy Storchaka | 2013-04-13 | 7 | -26/+102 |
| | | |||||
* | | #17719: fix incorrect version number in deprecation doc. | R David Murray | 2013-04-13 | 1 | -1/+1 |
| | | | | | | | | Patch by Kent Johnson. | ||||
* | | #2118: Make SMTPException a subclass of IOError. | R David Murray | 2013-04-13 | 4 | -3/+16 |
| | | | | | | | | Initial patch by Ned Jackson Lovely. | ||||
* | | Merge #2118: clarify smtplib exception documentation. | R David Murray | 2013-04-13 | 2 | -22/+26 |
|\ \ | |/ | |||||
| * | Reflow paragraph. | R David Murray | 2013-04-13 | 1 | -9/+8 |
| | | |||||
| * | #2118: clarify smtplib exception documentation. | R David Murray | 2013-04-13 | 2 | -14/+19 |
| | | |||||
* | | Issue #17016: Get rid of possible pointer wraparounds and integer overflows | Serhiy Storchaka | 2013-04-13 | 3 | -11/+15 |
|\ \ | |/ | | | | | in the re module. Patch by Nickolai Zeldovich. | ||||
| * | Issue #17016: Get rid of possible pointer wraparounds and integer overflows | Serhiy Storchaka | 2013-04-13 | 3 | -11/+15 |
| | | | | | | | | in the re module. Patch by Nickolai Zeldovich. | ||||
* | | #17571: merge with 3.3. | Ezio Melotti | 2013-04-13 | 1 | -15/+3 |
|\ \ | |/ | |||||
| * | #17571: remove broken links in datetime.py docstring. | Ezio Melotti | 2013-04-13 | 1 | -15/+3 |
| | | |||||
* | | #17686: merge with 3.3. | Ezio Melotti | 2013-04-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #17686: fix broken link in Doc/using/unix.rst. Patch by Dan Riti. | Ezio Melotti | 2013-04-13 | 1 | -1/+1 |
| | | |||||
* | | Issue #17715: Merge fix from 3.3. | Mark Dickinson | 2013-04-13 | 3 | -0/+11 |
|\ \ | |/ | |||||
| * | Issue #17715: Add missing NULL Check to PyNumber_Long. | Mark Dickinson | 2013-04-13 | 3 | -0/+11 |
| | | |||||
* | | Issue #17713: Test temporarily skipped while failure investigated. | Vinay Sajip | 2013-04-13 | 1 | -0/+1 |
| | | |||||
* | | Merge heads. | Mark Dickinson | 2013-04-13 | 4 | -42/+1 |
|\ \ | |||||
| * \ | Revert changes for #13355 by request from Raymond Hettinger | Andrew Svetlov | 2013-04-13 | 4 | -42/+1 |
| |\ \ | | |/ | |||||
| | * | Revert changes for #13355 by request from Raymond Hettinger | Andrew Svetlov | 2013-04-13 | 4 | -45/+1 |
| | | | |||||
* | | | Fix incorrect indentation on 'versionadded' for weakref.ref.__callback__. | Mark Dickinson | 2013-04-13 | 1 | -2/+2 |
|/ / | |||||
* | | Issue #17643: Add __callback__ attribute to weakref.ref. | Mark Dickinson | 2013-04-13 | 4 | -3/+44 |
| | | |||||
* | | Issue #16447: Merge fix from 3.3. | Mark Dickinson | 2013-04-13 | 3 | -1/+21 |
|\ \ | |/ | |||||
| * | Issue #16447: Fix potential segfault when setting __name__ on a class. | Mark Dickinson | 2013-04-13 | 3 | -1/+21 |
| | | |||||
* | | Fix whitespaces | Andrew Svetlov | 2013-04-12 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix whitespaces | Andrew Svetlov | 2013-04-12 | 1 | -1/+1 |
| | | |||||
* | | Issue #13355: Raise ValueError on random.triangular call with invalid params. | Andrew Svetlov | 2013-04-12 | 4 | -2/+42 |
|\ \ | |/ | | | | | Initial patch by Yuriy Senko. | ||||
| * | Issue #13355: Raise ValueError on random.triangular call with invalid params. | Andrew Svetlov | 2013-04-12 | 4 | -1/+45 |
| | | | | | | | | Initial patch by Yuriy Senko. | ||||
* | | Issue #16658: add missing return to HTTPConnection.send(). | Andrew Svetlov | 2013-04-12 | 3 | -1/+25 |
|\ \ | |/ | | | | | Patch by Jeff Knupp | ||||
| * | Issue #16658: add missing return to HTTPConnection.send(). | Andrew Svetlov | 2013-04-12 | 3 | -1/+25 |
| | | | | | | | | Patch by Jeff Knupp | ||||
* | | attempt to fix bb failure as per http://bugs.python.org/issue17675#msg186595 | Giampaolo Rodola' | 2013-04-12 | 1 | -1/+1 |
| | | |||||
* | | #17653: merge with 3.3. | Ezio Melotti | 2013-04-12 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #17653: fix typo in socketserver docs. Patch by Tshepang Lekhonkhobe. | Ezio Melotti | 2013-04-12 | 1 | -1/+1 |
| | | |||||
* | | Closed #9556: Allowed specifying a time-of-day for a ↵ | Vinay Sajip | 2013-04-12 | 4 | -8/+73 |
| | | | | | | | | TimedRotatingFileHandler to rotate. | ||||
* | | Null merge. | Ezio Melotti | 2013-04-12 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Merge heads. | Ezio Melotti | 2013-04-12 | 1 | -1/+1 |
| |\ | |||||
* | \ | Merge heads. | Ezio Melotti | 2013-04-12 | 3 | -379/+406 |
|\ \ \ | |||||
| * \ \ | #6696: merge with 3.3. | Ezio Melotti | 2013-04-12 | 3 | -379/+406 |
| |\ \ \ | | |/ / | |||||
| | * | | #6696: add documentation for the Profile objects, and improve ↵ | Ezio Melotti | 2013-04-12 | 3 | -379/+406 |
| | | | | | | | | | | | | | | | | profile/cProfile docs. Patch by Tom Pinckney. | ||||
* | | | | #17688: fix declaration for richcmp example in the docs. | Andrew Svetlov | 2013-04-12 | 1 | -1/+1 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | Thanks to Daniel Mullner | ||||
| * | | #17688: fix declaration for richcmp example in the docs. | Andrew Svetlov | 2013-04-12 | 1 | -1/+1 |
| |/ | | | | | | | Thanks to Daniel Mullner | ||||
* | | #17692: merge with 3.3. | Ezio Melotti | 2013-04-12 | 2 | -4/+8 |
|\ \ | |/ | |||||
| * | #17692: test_sqlite now works with unittest test discovery. Patch by ↵ | Ezio Melotti | 2013-04-12 | 2 | -4/+8 |
| | | | | | | | | Zachary Ware. | ||||
* | | #17585: merge with 3.3. | Roger Serwy | 2013-04-12 | 3 | -6/+6 |
|\ \ | |/ | |||||
| * | #17585: Fixed IDLE regression. Now closes when using exit() or quit(). | Roger Serwy | 2013-04-12 | 3 | -6/+6 |
| | |