Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #16694: Add a pure Python implementation of the operator module. | Antoine Pitrou | 2013-04-20 | 1 | -0/+3 |
| | | | | Patch by Zachary Ware. | ||||
* | #9607: Add tests for the keyword module. | R David Murray | 2013-04-20 | 1 | -0/+1 |
| | | | | Based on the testing ideas in a patch written by Greg Malcolm. | ||||
* | Merge #17413: make sure settrace funcs get passed exception instances for ↵ | R David Murray | 2013-04-19 | 2 | -0/+6 |
|\ | | | | | | | | | | | 'value'. Patch by Ingrid Cheung and Brendan McLoughlin. | ||||
| * | #17413: make sure settrace funcs get passed exception instances for 'value'. | R David Murray | 2013-04-19 | 2 | -0/+6 |
| | | | | | | | | Patch by Ingrid Cheung and Brendan McLoughlin. | ||||
* | | #17790: merge with 3.3. | Ezio Melotti | 2013-04-19 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #17790: test_set now works with unittest test discovery. Patch by Zachary Ware. | Ezio Melotti | 2013-04-19 | 1 | -0/+3 |
| | | |||||
* | | #17789: merge with 3.3. | Ezio Melotti | 2013-04-19 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #17789: test_random now works with unittest test discovery. Patch by ↵ | Ezio Melotti | 2013-04-19 | 1 | -0/+3 |
| | | | | | | | | Zachary Ware. | ||||
* | | #17779: merge with 3.3. | Ezio Melotti | 2013-04-19 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #17779: test_osx_env now works with unittest test discovery. Patch by ↵ | Ezio Melotti | 2013-04-19 | 1 | -0/+3 |
| | | | | | | | | Zachary Ware. | ||||
* | | #11182: remove the unused and undocumented pydoc.Scanner class. Patch by ↵ | Ezio Melotti | 2013-04-18 | 2 | -0/+4 |
| | | | | | | | | Martin Morrison. | ||||
* | | Issue #17741: Add ElementTree.IncrementalParser, an event-driven parser for ↵ | Antoine Pitrou | 2013-04-18 | 1 | -0/+3 |
| | | | | | | | | non-blocking applications. | ||||
* | | Merge. | Richard Oudkerk | 2013-04-17 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Merge. | Richard Oudkerk | 2013-04-17 | 1 | -0/+3 |
| |\ | |||||
| | * | - Issue #17782: Fix undefined behaviour on platforms where ``struct ↵ | Antoine Pitrou | 2013-04-17 | 1 | -0/+3 |
| | | | | | | | | | | | | timespec``'s "tv_nsec" member is not a C long. | ||||
* | | | Issue #17555: Fix ForkAwareThreadLock so that size of after fork | Richard Oudkerk | 2013-04-17 | 1 | -0/+3 |
|\ \ \ | |/ / | | | | | | | registry does not grow exponentially with generation of process. | ||||
| * | | Issue #17555: Fix ForkAwareThreadLock so that size of after fork | Richard Oudkerk | 2013-04-17 | 1 | -0/+3 |
| |/ | | | | | | | registry does not grow exponentially with generation of process. | ||||
| * | Fix issue #17707: multiprocessing.Queue's get() method does not block for ↵ | Giampaolo Rodola' | 2013-04-17 | 1 | -0/+3 |
| | | | | | | | | short timeouts. | ||||
* | | Fix issue #17707: multiprocessing.Queue's get() method does not block for ↵ | Giampaolo Rodola' | 2013-04-17 | 1 | -0/+3 |
| | | | | | | | | short timeouts. | ||||
* | | #14735: merge with 3.3. | Roger Serwy | 2013-04-17 | 1 | -0/+6 |
|\ \ | |/ | |||||
| * | #14735: Update IDLE docs to omit "Control-z on Windows". | Roger Serwy | 2013-04-17 | 1 | -0/+2 |
| | | |||||
* | | #17766: merge with 3.3. | Ezio Melotti | 2013-04-17 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #17766: test_iterlen now works with unittest test discovery. Patch by ↵ | Ezio Melotti | 2013-04-17 | 1 | -0/+3 |
| | | | | | | | | Zachary Ware. | ||||
* | | - Issue #17012: shutil.which() no longer fallbacks to the PATH environment | Barry Warsaw | 2013-04-16 | 1 | -0/+3 |
|\ \ | |/ | | | | | variable if empty path argument is specified. Patch by Serhiy Storchaka. | ||||
| * | - Issue #17012: shutil.which() no longer fallbacks to the PATH environment | Barry Warsaw | 2013-04-16 | 1 | -0/+3 |
| | | | | | | | | variable if empty path argument is specified. Patch by Serhiy Storchaka. | ||||
* | | Issue #17710: Fix pickle raising a SystemError on bogus input. | Antoine Pitrou | 2013-04-15 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #17710: Fix pickle raising a SystemError on bogus input. | Antoine Pitrou | 2013-04-15 | 1 | -0/+2 |
| | | |||||
| * | #13510: clarify that f.readlines() is note necessary to iterate over a file. ↵ | Ezio Melotti | 2013-04-15 | 1 | -0/+1 |
| | | | | | | | | Patch by Dan Riti. | ||||
* | | Merge #17341: Include name in re error message about invalid group name. | R David Murray | 2013-04-14 | 2 | -0/+4 |
|\ \ | |/ | | | | | Patch by Jason Michalski. | ||||
| * | #17341: Include name in re error message about invalid group name. | R David Murray | 2013-04-14 | 2 | -0/+4 |
| | | | | | | | | Patch by Jason Michalski. | ||||
* | | Issue #17221: Resort Misc/NEWS. | Serhiy Storchaka | 2013-04-14 | 1 | -256/+258 |
|\ \ | |/ | |||||
| * | Issue #17221: Resort Misc/NEWS. | Serhiy Storchaka | 2013-04-14 | 1 | -232/+243 |
| | | |||||
* | | (Merge 3.3) Close #17702: os.environ now raises KeyError with the original | Victor Stinner | 2013-04-14 | 1 | -0/+4 |
|\ \ | |/ | | | | | | | environment variable name (str on UNIX), instead of using the encoded name (bytes on UNIX). | ||||
| * | Close #17702: os.environ now raises KeyError with the original environment | Victor Stinner | 2013-04-14 | 1 | -0/+4 |
| | | | | | | | | variable name (str on UNIX), instead of using the encoded name (bytes on UNIX). | ||||
* | | Merge fix for #16163 from 3.3 | Nick Coghlan | 2013-04-14 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Close issue #16163: handle submodules in pkgutil.iter_importers | Nick Coghlan | 2013-04-14 | 1 | -0/+3 |
| | | |||||
| * | Issue #16550: Update the opcode descriptions of pickletools to use unsigned | Alexandre Vassalotti | 2013-04-14 | 1 | -0/+3 |
| | | | | | | | | integers where appropriate. Initial patch by Serhiy Storchaka. | ||||
* | | Issue #16804: Fix 'python -S -m site' failure. | Meador Inge | 2013-04-14 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | | | | | | | 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 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | 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. | ||||
* | | properly lookup the __round__ special method (closes #17722) | Benjamin Peterson | 2013-04-13 | 1 | -0/+2 |
| | | |||||
* | | Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal. | Antoine Pitrou | 2013-04-13 | 2 | -0/+4 |
| | | | | | | | | Initial patch by Daniel Riti. | ||||
* | | Issue #16061: Speed up str.replace() for replacing 1-character strings. | Serhiy Storchaka | 2013-04-13 | 1 | -0/+2 |
| | | |||||
* | | #2118: Make SMTPException a subclass of IOError. | R David Murray | 2013-04-13 | 1 | -0/+2 |
| | | | | | | | | Initial patch by Ned Jackson Lovely. | ||||
* | | Issue #17016: Get rid of possible pointer wraparounds and integer overflows | Serhiy Storchaka | 2013-04-13 | 2 | -0/+4 |
|\ \ | |/ | | | | | in the re module. Patch by Nickolai Zeldovich. | ||||
| * | Issue #17016: Get rid of possible pointer wraparounds and integer overflows | Serhiy Storchaka | 2013-04-13 | 2 | -0/+4 |
| | | | | | | | | in the re module. Patch by Nickolai Zeldovich. | ||||
* | | Issue #17715: Merge fix from 3.3. | Mark Dickinson | 2013-04-13 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #17715: Add missing NULL Check to PyNumber_Long. | Mark Dickinson | 2013-04-13 | 1 | -0/+3 |
| | | |||||
* | | Revert changes for #13355 by request from Raymond Hettinger | Andrew Svetlov | 2013-04-13 | 2 | -4/+0 |
|\ \ | |/ | |||||
| * | Revert changes for #13355 by request from Raymond Hettinger | Andrew Svetlov | 2013-04-13 | 2 | -4/+0 |
| | | |||||
* | | Issue #17643: Add __callback__ attribute to weakref.ref. | Mark Dickinson | 2013-04-13 | 1 | -0/+2 |
| | |