Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15424: Add a __sizeof__ implementation for array objects. | Meador Inge | 2012-08-11 | 1 | -0/+13 |
| | | | | Patch by Ludwig Hähne. | ||||
* | Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test case | Ned Deily | 2012-08-09 | 1 | -1/+4 |
| | | | | failure on OS X built with 10.4 ABI. | ||||
* | Fix CGI tests to take into account the platform's line ending (issue #13119) | Antoine Pitrou | 2012-08-05 | 1 | -5/+7 |
| | |||||
* | Fix universal newlines test to avoid the newline translation done by sys.stdout. | Antoine Pitrou | 2012-08-04 | 1 | -26/+28 |
| | |||||
* | Fix test_sys under Windows (issue #13119) | Antoine Pitrou | 2012-08-04 | 1 | -1/+2 |
| | |||||
* | Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ↵ | Andrew Svetlov | 2012-08-04 | 1 | -5/+26 |
| | | | | | | ended with '\'. Patch by Roger Serwy. | ||||
* | Close #13119: use "\r\n" newline for sys.stdout/err on Windows | Victor Stinner | 2012-08-03 | 1 | -0/+17 |
| | | | | sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2. | ||||
* | #15512: Remove remnants of debugging code | Jesus Cea | 2012-08-03 | 1 | -2/+0 |
| | |||||
* | Closes #15469: Correct __sizeof__ support for deque | Jesus Cea | 2012-08-03 | 1 | -0/+16 |
| | |||||
* | Closes #15512: Correct __sizeof__ support for parser | Jesus Cea | 2012-08-03 | 1 | -0/+41 |
| | |||||
* | Issue #8847: Disable COMDAT folding in Windows PGO builds. | Martin v. Löwis | 2012-08-01 | 2 | -0/+16 |
| | | | | Analysis by Victor Stinner. Patch by Stefan Krah. | ||||
* | Issue #9803: Don't close IDLE on saving if breakpoint is open. | Andrew Svetlov | 2012-07-31 | 1 | -2/+2 |
| | | | | Patch by Roger Serwy. | ||||
* | Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter ↵ | Andrew Svetlov | 2012-07-30 | 1 | -1/+1 |
| | | | | SimpleDialog. | ||||
* | Issue #14018: Update the OS X IDLE Tcl/Tk warning check to include | Ned Deily | 2012-07-30 | 2 | -6/+14 |
| | | | | | the Apple-supplied Tck/Tk versions shipped with OS X 10.7 and 10.8. They are not as buggy as the 10.6 version but can still easily crash. | ||||
* | Issue #15489: Add a __sizeof__ implementation for BytesIO objects. | Antoine Pitrou | 2012-07-29 | 1 | -0/+11 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. | Antoine Pitrou | 2012-07-29 | 1 | -3/+17 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Issue #15467: Move helpers for __sizeof__ tests into test_support. | Martin v. Löwis | 2012-07-29 | 3 | -148/+121 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. | Meador Inge | 2012-07-29 | 1 | -10/+41 |
| | |||||
* | Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. | Richard Oudkerk | 2012-07-27 | 2 | -1/+40 |
| | | | | Original patch by J Derek Wilson. | ||||
* | Issue #15320: Make iterating the list of tests thread-safe when running ↵ | Antoine Pitrou | 2012-07-25 | 1 | -12/+28 |
| | | | | | | tests in multiprocess mode. Patch by Chris Jerdonek. | ||||
* | Issue #7163: Propagate return value of sys.stdout.write. | Martin v. Löwis | 2012-07-25 | 3 | -3/+7 |
| | | | | Patch by Roger Serwy. | ||||
* | Issue #15318: Prevent writing to sys.stdin. | Martin v. Löwis | 2012-07-25 | 3 | -5/+38 |
| | | | | Patch by Roger Serwy and myself. | ||||
* | Better test for Issue #15402: Add a __sizeof__ method to struct.Struct | Jesus Cea | 2012-07-23 | 1 | -4/+4 |
| | |||||
* | Issue #15402: Add a __sizeof__ method to struct.Struct. | Meador Inge | 2012-07-23 | 1 | -0/+10 |
| | | | | Initial patch by Serhiy Storchaka. | ||||
* | #15232: correctly mangle From lines in MIME preamble and epilogue | R David Murray | 2012-07-23 | 2 | -2/+32 |
| | |||||
* | Consistently raise a TypeError when a non str is passed to hashlib.new | Gregory P. Smith | 2012-07-22 | 2 | -7/+4 |
| | | | | regardless of which of the two implementations of new is used. | ||||
* | #13922: argparse no longer incorrectly strips '--' after the first one. | R David Murray | 2012-07-22 | 2 | -14/+31 |
| | | | | Patch by Jeff Knupp. | ||||
* | #12353: argparse now correctly handles null argument values. | R David Murray | 2012-07-22 | 2 | -1/+2 |
| | | | | Patch by Torsten Landschoff. | ||||
* | #14391: clarify docstring discussion of Action's 'type' argument's value. | R David Murray | 2012-07-21 | 1 | -4/+4 |
| | |||||
* | #15342: Add clarifying sentence to posixpath.join docstring. | R David Murray | 2012-07-21 | 1 | -1/+2 |
| | | | | | | This sentence appears as a clarifying note in the HTML docs, and seems worth having in the docstring since it covers a very common use case that isn't otherwise obvious. Thanks to Yongzhi Pan for the suggestion. | ||||
* | Fix test_pprint random dict ordering. | Florent Xicluna | 2012-07-21 | 1 | -2/+3 |
| | |||||
* | Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with ↵ | Florent Xicluna | 2012-07-21 | 2 | -1/+14 |
| | | | | unorderable key. | ||||
* | Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after ↵ | Antoine Pitrou | 2012-07-20 | 1 | -4/+26 |
| | | | | | | error handling. Patch by Serhiy Storchaka. | ||||
* | Issue #15406: Fix deprecation warning in ctypes test_bitfields.py | Meador Inge | 2012-07-20 | 1 | -4/+4 |
| | | | | Patch by Flávio Ribeiro. | ||||
* | Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. | Meador Inge | 2012-07-19 | 1 | -0/+20 |
| | |||||
* | Use posixpath.join() explicitely in posixpath.join() test | Hynek Schlawack | 2012-07-17 | 1 | -1/+1 |
| | | | | Used os.path.join before which has different semantics on Windows. | ||||
* | #15377: Make posixpath.join() more strict when checking for str/bytes mix | Hynek Schlawack | 2012-07-17 | 2 | -14/+19 |
| | | | | Based on a patch by Nick Coghlan. | ||||
* | Issue #15230: Attempt to make the OS X buildbots happy by resolving the tmp ↵ | Nick Coghlan | 2012-07-17 | 1 | -1/+1 |
| | | | | dir symlink in the test suite | ||||
* | Fix context manager use in posixpath.join() tests | Hynek Schlawack | 2012-07-17 | 1 | -9/+12 |
| | | | | The asserts were useless (and buggy). | ||||
* | one more test fix for systems without select.poll. tested by deleting | Gregory P. Smith | 2012-07-16 | 1 | -3/+6 |
| | | | | | select.poll before running. works both ways (finally). this should fix the windows build. | ||||
* | Fix unchecked select.poll reference in setUp and tearDown for | Gregory P. Smith | 2012-07-16 | 1 | -5/+7 |
| | | | | platforms that don't have it. | ||||
* | Fix the with_poll tests for platforms without poll. missing import. | Gregory P. Smith | 2012-07-16 | 1 | -0/+1 |
| | |||||
* | Fixes Issue #14635: telnetlib will use poll() rather than select() when possible | Gregory P. Smith | 2012-07-16 | 2 | -7/+219 |
| | | | | to avoid failing due to the select() file descriptor limit. | ||||
* | #15180: Clarify posixpath.join() error message when mixing str & bytes | Hynek Schlawack | 2012-07-15 | 2 | -8/+22 |
| | |||||
* | Close #15230: runpy.run_path now sets __package__ correctly. Also refactored ↵ | Nick Coghlan | 2012-07-14 | 2 | -158/+272 |
| | | | | the runpy tests to use a more systematic approach | ||||
* | Try other approach to fix issue #15334. | Antoine Pitrou | 2012-07-13 | 1 | -3/+8 |
| | |||||
* | Issue #15334: skip test_dynamic_key when run in non-interactive mode. | Antoine Pitrou | 2012-07-13 | 1 | -0/+1 |
| | | | | Patch by Jeremy Kloth. | ||||
* | Issue #15338: skip test_UNC_path when the current user doesn't have enough ↵ | Antoine Pitrou | 2012-07-13 | 1 | -0/+7 |
| | | | | permissions to access the path. | ||||
* | Issue #15300: Ensure the temporary test working directories are in the same ↵ | Antoine Pitrou | 2012-07-11 | 1 | -1/+5 |
| | | | | | | parent folder when running tests in multiprocess mode from a Python build. Patch by Chris Jerdonek. | ||||
* | Use _RPCFile.write properly. | Martin v. Löwis | 2012-07-11 | 1 | -2/+2 |
| |