Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #19828: Merge with 3.3 | Zachary Ware | 2013-12-11 | 1 | -0/+2 |
|\ | |||||
| * | Issue #19828: Fixed test_site when the whole suite is run with -S. | Zachary Ware | 2013-12-11 | 1 | -0/+2 |
| | | | | | | | | Also, cleaned up an unused import. | ||||
| * | #19063: partially fix set_payload handling of non-ASCII string input. | R David Murray | 2013-12-11 | 1 | -0/+5 |
| | | | | | | | | | | | | This is a backward compatible partial fix, the complete fix requires raising an error instead of accepting the invalid input, so the real fix is only suitable for 3.4. | ||||
* | | #19063: fix set_payload handling of non-ASCII string input. | R David Murray | 2013-12-11 | 1 | -0/+7 |
| | | | | | | | | | | This version of the fix raises an error instead of accepting the invalid input (ie: if a non-ASCII string is used but no charset is specified). | ||||
* | | Issue #17576: Deprecation warning emitted now when __int__() or __index__() | Serhiy Storchaka | 2013-12-11 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions. | ||||
| * | Issue #17576: Deprecation warning emitted now when __int__() or __index__() | Serhiy Storchaka | 2013-12-11 | 1 | -0/+3 |
| | | | | | | | | | | return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions. | ||||
| * | Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by the | Gregory P. Smith | 2013-12-11 | 1 | -0/+5 |
| | | | | | | | | | | | | fix to Issue #14635 in Python 3.3.0 to be interpreted as milliseconds instead of seconds when the platform supports select.poll (ie: everywhere). It is now treated as seconds once again. | ||||
* | | Issue #18864: Add a setter for ModuleSpec.has_location. | Eric Snow | 2013-12-11 | 1 | -0/+2 |
| | | |||||
* | | Issue #18270: merge from 3.3 | Ned Deily | 2013-12-11 | 1 | -1/+4 |
|\ \ | |/ | |||||
| * | Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial | Ned Deily | 2013-12-11 | 1 | -1/+4 |
| | | | | | | | | shell window is present. (Original patch by Terry Reedy) | ||||
* | | Issue #19928: Implemented a test for repr() of cell objects. | Serhiy Storchaka | 2013-12-10 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #19928: Implemented a test for repr() of cell objects. | Serhiy Storchaka | 2013-12-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #19481: print() of string subclass instance in IDLE no more hangs. | Serhiy Storchaka | 2013-12-10 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | Issue #19481: print() of string subclass instance in IDLE no more hangs. | Serhiy Storchaka | 2013-12-10 | 1 | -0/+5 |
| | | |||||
* | | Issue 19851: Fix a regression in reloading submodules. | Eric Snow | 2013-12-10 | 1 | -0/+2 |
| | | |||||
* | | (Merge 3.3) Issue #19932: Fix typo in import.h, missing whitespaces in ↵ | Victor Stinner | 2013-12-10 | 1 | -0/+2 |
|\ \ | |/ | | | | | function prototypes. | ||||
| * | Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. | Victor Stinner | 2013-12-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #15475: Add __sizeof__ implementations for itertools objects. | Serhiy Storchaka | 2013-12-09 | 1 | -0/+2 |
| | | |||||
* | | Close #19880: Fix a reference leak in unittest.TestCase. Explicitly break | Victor Stinner | 2013-12-09 | 1 | -0/+3 |
| | | | | | | | | reference cycles between frames and the _Outcome instance. | ||||
* | | (Merge 3.3) Issue #17429: platform.linux_distribution() now decodes files from | Victor Stinner | 2013-12-08 | 2 | -0/+7 |
|\ \ | |/ | | | | | | | | | | | the UTF-8 encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi. | ||||
| * | Issue #17429: platform.linux_distribution() now decodes files from the UTF-8 | Victor Stinner | 2013-12-08 | 2 | -0/+7 |
| | | | | | | | | | | | | | | encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi. | ||||
* | | Fixes issue #19929: Call os.read with 32768 within subprocess.Popen | Gregory P. Smith | 2013-12-08 | 1 | -0/+4 |
|\ \ | |/ | | | | | | | communicate rather than 4096 for efficiency. A microbenchmark shows Linux and OS X both using ~50% less cpu time this way. | ||||
| * | Fixes issue #19929: Call os.read with 32768 within subprocess.Popen | Gregory P. Smith | 2013-12-08 | 1 | -0/+4 |
| | | | | | | | | | | communicate rather than 4096 for efficiency. A microbenchmark shows Linux and OS X both using ~50% less cpu time this way. | ||||
* | | Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, and | Serhiy Storchaka | 2013-12-08 | 1 | -0/+3 |
|\ \ | |/ | | | | | test_statistics when python is run with -OO. | ||||
| * | Issue #19535: Fixed test_docxmlrpc when python is run with -OO. | Serhiy Storchaka | 2013-12-08 | 1 | -0/+2 |
| | | |||||
* | | - Issue #19736: Add module-level statvfs constants defined for GNU/glibc | doko@ubuntu.com | 2013-12-08 | 1 | -0/+3 |
| | | | | | | | | based systems. | ||||
* | | Issue #19343: Expose FreeBSD-specific APIs in resource module. Original ↵ | Christian Heimes | 2013-12-08 | 1 | -0/+3 |
| | | | | | | | | patch by Koobs. | ||||
* | | Issue #19926: Removed unneeded test_main from test_abstract_numbers. | Zachary Ware | 2013-12-08 | 1 | -0/+3 |
|\ \ | |/ | | | | | Patch by Vajrasky Kok. | ||||
| * | Issue #19926: Removed unneeded test_main from test_abstract_numbers. | Zachary Ware | 2013-12-08 | 1 | -0/+3 |
| | | | | | | | | Patch by Vajrasky Kok. | ||||
* | | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 1 | -1/+1 |
| | | |||||
* | | Fixes issue #19506: Use a memoryview to avoid a data copy when piping data | Gregory P. Smith | 2013-12-08 | 1 | -0/+3 |
|\ \ | |/ | | | | | to stdin within subprocess.Popen.communicate. 5-10% less cpu usage. | ||||
| * | Fixes issue #19506: Use a memoryview to avoid a data copy when piping data | Gregory P. Smith | 2013-12-08 | 1 | -0/+3 |
| | | | | | | | | to stdin within subprocess.Popen.communicate. 5-10% less cpu usage. | ||||
* | | News item for issue 19876. | Guido van Rossum | 2013-12-08 | 1 | -0/+3 |
| | | |||||
* | | Issue #19922: define _INCLUDE__STDC_A1_SOURCE in HP-UX to include mbstate_t | Christian Heimes | 2013-12-07 | 1 | -0/+3 |
| | | | | | | | | for mbrtowc(). | ||||
* | | Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. | Alexandre Vassalotti | 2013-12-07 | 2 | -0/+5 |
| | | | | | | | | | | | | | | Initial patch by Merlijn van Deen. I've added a few unrelated docstring fixes in the patch while I was at it, which makes the documentation for pickle a bit more consistent. | ||||
* | | Issue #19908: pathlib now joins relative Windows paths correctly when a drive | Serhiy Storchaka | 2013-12-06 | 1 | -0/+2 |
| | | | | | | | | is present. Original patch by Antoine Pitrou. | ||||
* | | Issue #19881: Fix bad pickling of large bytes in cpickle. | Alexandre Vassalotti | 2013-12-06 | 1 | -0/+4 |
| | | |||||
* | | Issue #19296: Silence compiler warning in dbm_open. | Christian Heimes | 2013-12-05 | 1 | -0/+2 |
| | | | | | | | | Some dbm header files declare the first argument as char * instead of a const char *. | ||||
* | | Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵ | Antoine Pitrou | 2013-12-05 | 1 | -0/+3 |
|\ \ | |/ | | | | | pickle module. | ||||
| * | Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵ | Antoine Pitrou | 2013-12-05 | 1 | -0/+3 |
| | | | | | | | | pickle module. | ||||
* | | Closes #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF. | Nadeem Vawda | 2013-12-04 | 1 | -0/+3 |
|\ \ | |/ | | | | | Also fix an analogous bug (not a regression) in the lzma module. | ||||
| * | #19839: Fix lzma module's handling of non-lzma data at EOF. | Nadeem Vawda | 2013-12-04 | 1 | -1/+1 |
| | | |||||
| * | #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF. | Nadeem Vawda | 2013-12-04 | 1 | -0/+3 |
| | | |||||
| * | Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. | Tim Peters | 2013-12-04 | 1 | -0/+4 |
| | | | | | | | | (grafted from c80083ad142db2939507800c755082293a87f2de) | ||||
* | | Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. | Tim Peters | 2013-12-04 | 1 | -0/+4 |
| | | |||||
* | | Close #19827: On UNIX, setblocking() and settimeout() methods of socket.socket | Victor Stinner | 2013-12-03 | 1 | -0/+4 |
| | | | | | | | | | | can now avoid a second syscall if the ioctl() function can be used, or if the non-blocking flag of the socket is unchanged. | ||||
* | | Issue #19785: smtplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 1 | -0/+3 |
| | | | | | | | | indication for TLS/SSL connections. | ||||
* | | Issue #19783: nntplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 1 | -0/+3 |
| | | | | | | | | indication for TLS/SSL connections. | ||||
* | | Issue #19784: poplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 1 | -0/+3 |
| | | | | | | | | indication for TLS/SSL connections. |