summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* #11182: remove the unused and undocumented pydoc.Scanner class. Patch by ↵Ezio Melotti2013-04-182-0/+4
| | | | Martin Morrison.
* Issue #17741: Add ElementTree.IncrementalParser, an event-driven parser for ↵Antoine Pitrou2013-04-181-0/+3
| | | | non-blocking applications.
* Merge.Richard Oudkerk2013-04-171-0/+3
|\
| * Merge.Richard Oudkerk2013-04-171-0/+3
| |\
| | * - Issue #17782: Fix undefined behaviour on platforms where ``struct ↵Antoine Pitrou2013-04-171-0/+3
| | | | | | | | | | | | timespec``'s "tv_nsec" member is not a C long.
* | | Issue #17555: Fix ForkAwareThreadLock so that size of after forkRichard Oudkerk2013-04-171-0/+3
|\ \ \ | |/ / | | | | | | registry does not grow exponentially with generation of process.
| * | Issue #17555: Fix ForkAwareThreadLock so that size of after forkRichard Oudkerk2013-04-171-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-171-0/+3
| | | | | | | | short timeouts.
* | Fix issue #17707: multiprocessing.Queue's get() method does not block for ↵Giampaolo Rodola'2013-04-171-0/+3
| | | | | | | | short timeouts.
* | #14735: merge with 3.3.Roger Serwy2013-04-171-0/+6
|\ \ | |/
| * #14735: Update IDLE docs to omit "Control-z on Windows".Roger Serwy2013-04-171-0/+2
| |
* | #17766: merge with 3.3.Ezio Melotti2013-04-171-0/+3
|\ \ | |/
| * #17766: test_iterlen now works with unittest test discovery. Patch by ↵Ezio Melotti2013-04-171-0/+3
| | | | | | | | Zachary Ware.
* | - Issue #17012: shutil.which() no longer fallbacks to the PATH environmentBarry Warsaw2013-04-161-0/+3
|\ \ | |/ | | | | variable if empty path argument is specified. Patch by Serhiy Storchaka.
| * - Issue #17012: shutil.which() no longer fallbacks to the PATH environmentBarry Warsaw2013-04-161-0/+3
| | | | | | | | variable if empty path argument is specified. Patch by Serhiy Storchaka.
* | Issue #17710: Fix pickle raising a SystemError on bogus input.Antoine Pitrou2013-04-151-0/+2
|\ \ | |/
| * Issue #17710: Fix pickle raising a SystemError on bogus input.Antoine Pitrou2013-04-151-0/+2
| |
| * #13510: clarify that f.readlines() is note necessary to iterate over a file. ↵Ezio Melotti2013-04-151-0/+1
| | | | | | | | Patch by Dan Riti.
* | Merge #17341: Include name in re error message about invalid group name.R David Murray2013-04-142-0/+4
|\ \ | |/ | | | | Patch by Jason Michalski.
| * #17341: Include name in re error message about invalid group name.R David Murray2013-04-142-0/+4
| | | | | | | | Patch by Jason Michalski.
* | Issue #17221: Resort Misc/NEWS.Serhiy Storchaka2013-04-141-256/+258
|\ \ | |/
| * Issue #17221: Resort Misc/NEWS.Serhiy Storchaka2013-04-141-232/+243
| |
* | (Merge 3.3) Close #17702: os.environ now raises KeyError with the originalVictor Stinner2013-04-141-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 environmentVictor Stinner2013-04-141-0/+4
| | | | | | | | variable name (str on UNIX), instead of using the encoded name (bytes on UNIX).
* | Merge fix for #16163 from 3.3Nick Coghlan2013-04-141-0/+3
|\ \ | |/
| * Close issue #16163: handle submodules in pkgutil.iter_importersNick Coghlan2013-04-141-0/+3
| |
| * Issue #16550: Update the opcode descriptions of pickletools to use unsignedAlexandre Vassalotti2013-04-141-0/+3
| | | | | | | | integers where appropriate. Initial patch by Serhiy Storchaka.
* | Issue #16804: Fix 'python -S -m site' failure.Meador Inge2013-04-141-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 Inge2013-04-141-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 Peterson2013-04-131-0/+2
| |
* | Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal.Antoine Pitrou2013-04-132-0/+4
| | | | | | | | Initial patch by Daniel Riti.
* | Issue #16061: Speed up str.replace() for replacing 1-character strings.Serhiy Storchaka2013-04-131-0/+2
| |
* | #2118: Make SMTPException a subclass of IOError.R David Murray2013-04-131-0/+2
| | | | | | | | Initial patch by Ned Jackson Lovely.
* | Issue #17016: Get rid of possible pointer wraparounds and integer overflowsSerhiy Storchaka2013-04-132-0/+4
|\ \ | |/ | | | | in the re module. Patch by Nickolai Zeldovich.
| * Issue #17016: Get rid of possible pointer wraparounds and integer overflowsSerhiy Storchaka2013-04-132-0/+4
| | | | | | | | in the re module. Patch by Nickolai Zeldovich.
* | Issue #17715: Merge fix from 3.3.Mark Dickinson2013-04-131-0/+3
|\ \ | |/
| * Issue #17715: Add missing NULL Check to PyNumber_Long.Mark Dickinson2013-04-131-0/+3
| |
* | Revert changes for #13355 by request from Raymond HettingerAndrew Svetlov2013-04-132-4/+0
|\ \ | |/
| * Revert changes for #13355 by request from Raymond HettingerAndrew Svetlov2013-04-132-4/+0
| |
* | Issue #17643: Add __callback__ attribute to weakref.ref.Mark Dickinson2013-04-131-0/+2
| |
* | Issue #16447: Merge fix from 3.3.Mark Dickinson2013-04-131-0/+3
|\ \ | |/
| * Issue #16447: Fix potential segfault when setting __name__ on a class.Mark Dickinson2013-04-131-0/+3
| |
* | Issue #13355: Raise ValueError on random.triangular call with invalid params.Andrew Svetlov2013-04-122-0/+4
|\ \ | |/ | | | | Initial patch by Yuriy Senko.
| * Issue #13355: Raise ValueError on random.triangular call with invalid params.Andrew Svetlov2013-04-122-0/+4
| | | | | | | | Initial patch by Yuriy Senko.
* | Issue #16658: add missing return to HTTPConnection.send().Andrew Svetlov2013-04-121-0/+3
|\ \ | |/ | | | | Patch by Jeff Knupp
| * Issue #16658: add missing return to HTTPConnection.send().Andrew Svetlov2013-04-121-0/+3
| | | | | | | | Patch by Jeff Knupp
* | Closed #9556: Allowed specifying a time-of-day for a ↵Vinay Sajip2013-04-121-0/+3
| | | | | | | | TimedRotatingFileHandler to rotate.
* | #6696: merge with 3.3.Ezio Melotti2013-04-122-0/+4
|\ \ | |/
| * #6696: add documentation for the Profile objects, and improve ↵Ezio Melotti2013-04-122-0/+4
| | | | | | | | profile/cProfile docs. Patch by Tom Pinckney.
* | #17692: merge with 3.3.Ezio Melotti2013-04-121-0/+3
|\ \ | |/