Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Issue #17911: traceback module overhaul | Robert Collins | 2015-03-04 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | | | Provide a way to seed the linecache for a PEP-302 module without actually loading the code. Provide a new object API for traceback, including the ability to not lookup lines at all until the traceback is actually rendered, without any trace of the original objects being kept alive. | |||||
* | | Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the ↵ | Antoine Pitrou | 2015-03-04 | 1 | -0/+3 | |
|\ \ | |/ | | | | | SSL layer but the underlying connection hasn't been closed. | |||||
| * | Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the ↵ | Antoine Pitrou | 2015-03-04 | 1 | -0/+3 | |
| | | | | | | | | SSL layer but the underlying connection hasn't been closed. | |||||
* | | Issue #23504: Added an __all__ to the types module. | Serhiy Storchaka | 2015-03-04 | 1 | -0/+2 | |
|\ \ | |/ | ||||||
| * | Issue #23504: Added an __all__ to the types module. | Serhiy Storchaka | 2015-03-04 | 1 | -0/+2 | |
| | | ||||||
* | | Issue #23563: Optimized utility functions in urllib.parse. | Serhiy Storchaka | 2015-03-03 | 1 | -0/+2 | |
| | | ||||||
* | | issue19075: add visual sorting algorithms to turtledemo; original code from ↵ | Ethan Furman | 2015-03-02 | 1 | -0/+3 | |
| | | | | | | | | Jason Yeo | |||||
* | | merge 3.4 (#23367) | Benjamin Peterson | 2015-03-02 | 1 | -0/+2 | |
|\ \ | |/ | ||||||
| * | merge 3.3 (#23367) | Benjamin Peterson | 2015-03-02 | 1 | -0/+2 | |
| |\ | ||||||
| | * | fix possible overflow bugs in unicodedata (closes #23367) | Benjamin Peterson | 2015-03-02 | 1 | -0/+2 | |
| | | | ||||||
* | | | merge 3.4 | Benjamin Peterson | 2015-03-02 | 1 | -6/+5 | |
|\ \ \ | |/ / | ||||||
| * | | remove mention of Python 2.2 and 2.3 | Benjamin Peterson | 2015-03-02 | 1 | -6/+5 | |
| | | | ||||||
* | | | Issue #7830: Flatten nested functools.partial. | Alexander Belopolsky | 2015-03-01 | 1 | -0/+2 | |
| | | | ||||||
* | | | Issue #20204: Deprecation warning is now raised for builtin type without the | Serhiy Storchaka | 2015-03-01 | 1 | -0/+6 | |
| | | | | | | | | | | | | __module__ attribute. | |||||
* | | | Issue #20204: Added the __module__ attribute to _tkinter classes. | Serhiy Storchaka | 2015-03-01 | 1 | -0/+2 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #20204: Added the __module__ attribute to _tkinter classes. | Serhiy Storchaka | 2015-03-01 | 1 | -0/+3 | |
| | | | ||||||
* | | | Issue #19980: Improved help() for non-recognized strings. help('') now | Serhiy Storchaka | 2015-02-28 | 2 | -0/+6 | |
| | | | | | | | | | | | | | | | shows the help on str. help('help') now shows the help on help(). Original patch by Mark Lawrence. | |||||
* | | | Fixes #23521: Corrected pure python implementation of timedelta division. | Alexander Belopolsky | 2015-02-28 | 1 | -0/+4 | |
|\ \ \ | |/ / | | | | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division. | |||||
| * | | Fixes #23521: Corrected pure python implementation of timedelta division. | Alexander Belopolsky | 2015-02-28 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division. | |||||
* | | | Issue #21619: Popen objects no longer leave a zombie after exit in the with | Serhiy Storchaka | 2015-02-28 | 1 | -0/+3 | |
|\ \ \ | |/ / | | | | | | | statement if the pipe was broken. Patch by Martin Panter. | |||||
| * | | Issue #21619: Popen objects no longer leave a zombie after exit in the with | Serhiy Storchaka | 2015-02-28 | 1 | -0/+3 | |
| | | | | | | | | | | | | statement if the pipe was broken. Patch by Martin Panter. | |||||
* | | | Merge from 3.4. | Larry Hastings | 2015-02-27 | 1 | -3/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Fix minor errors in Misc/NEWS. (Thanks for the report, Florian Bruhin!) | Larry Hastings | 2015-02-27 | 1 | -3/+1 | |
| | | | ||||||
* | | | Merge 3.4 (httplib) | Victor Stinner | 2015-02-27 | 1 | -0/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop. | Victor Stinner | 2015-02-27 | 1 | -0/+1 | |
| | | | ||||||
| * | | Merge 3.4.3 release engineering changes back into 3.4. | Larry Hastings | 2015-02-26 | 5 | -423/+39 | |
| |\ \ | ||||||
| * | | | Post-release changes for 3.4.3. | Larry Hastings | 2015-02-26 | 1 | -0/+12 | |
| | | | | ||||||
| * | | | Release bump for 3.4.3 final. | Larry Hastings | 2015-02-23 | 2 | -14/+2 | |
| | | | | ||||||
* | | | | Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual ↵ | Steve Dower | 2015-02-26 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | environments (patch by Paul Moore) | |||||
* | | | | Issue #15955: Add an option to limit the output size in bz2.decompress(). | Antoine Pitrou | 2015-02-26 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | Patch by Nikolaus Rath. | |||||
* | | | | Issue #6639: Module-level turtle functions no longer raise TclError after | Serhiy Storchaka | 2015-02-22 | 1 | -0/+3 | |
|\ \ \ \ | | |/ / | |/| | | | | | | closing the window. | |||||
| * | | | Issue #6639: Module-level turtle functions no longer raise TclError after | Serhiy Storchaka | 2015-02-22 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | closing the window. | |||||
| * | | | Issues #814253, #9179: Warnings now are raised when group references and | Serhiy Storchaka | 2015-02-21 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | | | | | conditional group references are used in lookbehind assertions in regular expressions. | |||||
* | | | | Issues #814253, #9179: Group references and conditional group references now | Serhiy Storchaka | 2015-02-21 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | work in lookbehind assertions in regular expressions. | |||||
* | | | | Issue #23215: Multibyte codecs with custom error handlers that ignores errors | Serhiy Storchaka | 2015-02-20 | 1 | -0/+4 | |
|\ \ \ \ | |/ / / | | | | | | | | | | | | | consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo. | |||||
| * | | | Issue #23215: Multibyte codecs with custom error handlers that ignores errors | Serhiy Storchaka | 2015-02-20 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | | | | | consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo. | |||||
* | | | | Issue #5700: io.FileIO() called flush() after closing the file. | Serhiy Storchaka | 2015-02-20 | 1 | -0/+3 | |
|\ \ \ \ | |/ / / | | | | | | | | | flush() was not called in close() if closefd=False. | |||||
| * | | | Issue #5700: io.FileIO() called flush() after closing the file. | Serhiy Storchaka | 2015-02-20 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | flush() was not called in close() if closefd=False. | |||||
* | | | | Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding | Serhiy Storchaka | 2015-02-20 | 1 | -0/+3 | |
|\ \ \ \ | |/ / / | | | | | | | | | differs from file system encoding (e.g. on Mac OS). | |||||
| * | | | Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding | Serhiy Storchaka | 2015-02-20 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | differs from file system encoding (e.g. on Mac OS). | |||||
* | | | | merge 3.4 (#23481) | Benjamin Peterson | 2015-02-19 | 1 | -0/+2 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | remove rc4 from the default client ciphers (closes #23481) | Benjamin Peterson | 2015-02-19 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | merge 3.4 | Benjamin Peterson | 2015-02-18 | 3 | -423/+0 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | merge 3.3 | Benjamin Peterson | 2015-02-18 | 3 | -423/+0 | |
| |\ \ \ | | | |/ | | |/| | ||||||
| | * | | merge 3.2 | Benjamin Peterson | 2015-02-18 | 3 | -424/+0 | |
| | |\ \ | ||||||
| | | * | | remove RPM, since it's unused and unmaintained | Benjamin Peterson | 2015-02-18 | 3 | -424/+0 | |
| | | | | | ||||||
| | | * | | Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis | Serhiy Storchaka | 2015-01-27 | 1 | -0/+12 | |
| | | | | | | | | | | | | | | | | | | | | and fix by Guido Vranken. | |||||
* | | | | | merge 3.4 (#21548) | Benjamin Peterson | 2015-02-17 | 2 | -0/+4 | |
|\ \ \ \ \ | |/ / / / | ||||||
| * | | | | fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548) | Benjamin Peterson | 2015-02-17 | 2 | -0/+4 | |
| | | | | | | | | | | | | | | | | | | | | Patch by Yuyang Guo and Berker Peksag. | |||||
* | | | | | Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb | Serhiy Storchaka | 2015-02-15 | 1 | -0/+3 | |
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | module. Original patch by Claudiu Popa. |