| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #16792: Use assertIs() to test identity. | Serhiy Storchaka | 2012-12-27 | 1 | -4/+4 |
| | | |||||
| * | Issue #16793. Replace deprecated unittest asserts with modern counterparts. | Serhiy Storchaka | 2012-12-27 | 4 | -8/+8 |
| | | |||||
| * | Issue #16792: Mark small ints test as CPython-only. | Serhiy Storchaka | 2012-12-27 | 1 | -0/+8 |
| | | |||||
| * | Issue #16790: add some of the recent issue #16045 int tests to test_long. | Chris Jerdonek | 2012-12-27 | 2 | -12/+23 |
| | | | | | | This patch also provides a simple way to share tests going forward between test_int and test_long. | ||||
| * | Fix #16759. Convert DWORD registry values using unsigned long. | Brian Curtin | 2012-12-27 | 1 | -0/+17 |
| | | | | | | | When converting REG_DWORD registry values into Python, the conversion needs to be made from an *unsigned* long (k instead of i) to match the DWORD type. | ||||
| * | Fix #14420. Check for PyLong as well as PyInt when converting in Py2Reg. | Brian Curtin | 2012-12-27 | 1 | -0/+12 |
| | | | | | | This fixes a ValueError seen in winreg.SetValueEx when passed long winreg.REG_DWORD values that should be supported by the underlying API. | ||||
| * | #16618: Add more glob regression tests | Hynek Schlawack | 2012-12-27 | 1 | -24/+77 |
| | | | | | | | Mostly about symlinks and str/unicode behavior. Patch by Serhiy Storchaka. | ||||
| * | Issue #16702: Skip proxies for localhost in urllib2_localnet tests | Senthil Kumaran | 2012-12-26 | 1 | -0/+8 |
| | | |||||
| * | issue #879399 | Kristján Valur Jónsson | 2012-12-25 | 1 | -1/+59 |
| | | | | | Fix line buffering of socket._fileobject | ||||
| * | Fix issue16713 - tel url parsing with params | Senthil Kumaran | 2012-12-24 | 1 | -0/+33 |
| | | |||||
| * | Issue #13863: fix incorrect .pyc timestamps on Windows / NTFS (apparently ↵ | Mark Dickinson | 2012-12-24 | 1 | -0/+41 |
| | | | | | due to buggy fstat) | ||||
| * | Fix Issue15701 - HTTPError info method call raises AttributeError. Fix that ↵ | Senthil Kumaran | 2012-12-23 | 1 | -10/+26 |
| | | | | | to return headers correctly | ||||
| * | Issue #16045: add more unit tests for built-in int() | Andrew Svetlov | 2012-12-23 | 2 | -0/+56 |
| | | | | | Patch by Chris Jerdonek. | ||||
| * | #8853: Allow port to be of type long for socket.getaddrinfo() | Petri Lehtinen | 2012-12-20 | 1 | -1/+2 |
| | | |||||
| * | call close on the underlying stream even if flush raises (#16597) | Benjamin Peterson | 2012-12-20 | 1 | -0/+27 |
| | | |||||
| * | replace threw with raised (#16714) | Andrew Svetlov | 2012-12-19 | 2 | -2/+2 |
| | | |||||
| * | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 14 | -25/+25 |
| | | | | | Patch by Serhiy Storchaka. | ||||
| * | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵ | Antoine Pitrou | 2012-12-16 | 1 | -0/+9 |
| | | | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka. | ||||
| * | #16664: Add regression tests for glob's behaviour concerning "."-entries | Hynek Schlawack | 2012-12-16 | 1 | -1/+6 |
| | | | | | Patch by Sebastian Kreft. | ||||
| * | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵ | Antoine Pitrou | 2012-12-15 | 1 | -1/+14 |
| | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein. | ||||
| * | Issue #16602: When a weakref's target was part of a long deallocation chain, ↵ | Antoine Pitrou | 2012-12-08 | 1 | -0/+21 |
| | | | | | | | the object could remain reachable through its weakref even though its refcount had dropped to zero. Thanks to Eugene Toder for diagnosing and reporting the issue. | ||||
| * | Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. | Victor Stinner | 2012-12-04 | 1 | -3/+20 |
| | | | | | | | This is necessary for ZFS systems, which don't support UF_IMMUTABLE. -- Kubilay Kocak (koobs) asked me on IRC to backport this fix to Python 2.7: done! | ||||
| * | Fix test splitting in previous commit. | Antoine Pitrou | 2012-12-03 | 1 | -4/+2 |
| | | |||||
| * | Split the bigmem re test in two separate tests with different memory ↵ | Antoine Pitrou | 2012-12-03 | 1 | -2/+10 |
| | | | | | requirements. | ||||
| * | Issue #10182: The re module doesn't truncate indices to 32 bits anymore. | Antoine Pitrou | 2012-12-02 | 1 | -0/+16 |
| | | | | | Patch by Serhiy Storchaka. | ||||
| * | fix spelling | Benjamin Peterson | 2012-11-30 | 1 | -2/+3 |
| | | |||||
| * | Remove redundant check for symlink. (closes #6036) | Benjamin Peterson | 2012-11-30 | 1 | -13/+14 |
| | | | | | Patch by Bruno Dupuis. | ||||
| * | Issue #9011: AST creation no longer modifies CST for negated numeric literals. | Mark Dickinson | 2012-11-25 | 1 | -0/+11 |
| | | |||||
| * | Issue #16339: Document and test exec(stmt, globals, locals) form in Python 2.7. | Mark Dickinson | 2012-11-25 | 1 | -0/+28 |
| | | |||||
| * | test_winsound should require the "audio" resource, as it does on 3.x. | Antoine Pitrou | 2012-11-24 | 1 | -0/+1 |
| | | | | | (this should fix some buildbot test failures) | ||||
| * | #16306: report only the first unknown option and add more tests. Patch by ↵ | Ezio Melotti | 2012-11-23 | 1 | -4/+14 |
| | | | | | Serhiy Storchaka. | ||||
| * | Issue #1160: Fix compiling large regular expressions on UCS2 builds. | Antoine Pitrou | 2012-11-20 | 1 | -0/+6 |
| | | | | | Patch by Serhiy Storchaka. | ||||
| * | #7782: add a test for test_iter. | Ezio Melotti | 2012-11-18 | 1 | -0/+15 |
| | | |||||
| * | #16306: Fix multiple error messages when unknown command line parameters ↵ | Ezio Melotti | 2012-11-18 | 1 | -1/+10 |
| | | | | | where passed to the interpreter. Patch by Hieu Nguyen. | ||||
| * | #14313: zipfile now raises NotImplementedError when the compression type is ↵ | Ezio Melotti | 2012-11-18 | 1 | -0/+11 |
| | | | | | unknown. | ||||
| * | Issue #15379: Fix passing of non-BMP characters as integers for the charmap ↵ | Antoine Pitrou | 2012-11-17 | 2 | -1/+106 |
| | | | | | | | decoder (already working as unicode strings). Patch by Serhiy Storchaka. | ||||
| * | Issue #16453: Fix equality testing of dead weakref objects. | Antoine Pitrou | 2012-11-11 | 1 | -11/+69 |
| | | | | | Also add tests for hashing. | ||||
| * | remove an obsolete comment | Gregory P. Smith | 2012-11-11 | 1 | -1/+0 |
| | | |||||
| * | Refactor test_preexec_errpipe to not create an uncollectable reference cycle. | Gregory P. Smith | 2012-11-11 | 1 | -22/+22 |
| | | |||||
| * | whitespace fix | Gregory P. Smith | 2012-11-11 | 1 | -1/+1 |
| | | |||||
| * | Fix issue #16140 bug that the fix to issue #16327 added - don't double | Gregory P. Smith | 2012-11-11 | 1 | -0/+47 |
| | | | | | | close subprocess.PIPE file descriptors when the child encounters an error prior to exec. | ||||
| * | Fixes issue #16327: The subprocess module no longer leaks file descriptors | Gregory P. Smith | 2012-11-11 | 1 | -0/+33 |
| | | | | | used for stdin/stdout/stderr pipes to the child when fork() fails. | ||||
| * | Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to ↵ | Nadeem Vawda | 2012-11-11 | 1 | -0/+12 |
| | | | | | | | access previously-freed memory. Patch by Serhiy Storchaka. | ||||
| * | Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in ↵ | Nadeem Vawda | 2012-11-11 | 1 | -9/+21 |
| | | | | | | | | | | | decompressobj().flush(). Additionally, fix a bug where a MemoryError in allocating a bytes object could leave the decompressor object in an invalid state (with its unconsumed_tail member being NULL). Patch by Serhiy Storchaka. | ||||
| * | Issue #15001: fix segfault on "del sys.modules['__main__']" | Hynek Schlawack | 2012-11-07 | 1 | -2/+17 |
| | | | | | Patch by Victor Stinner. | ||||
| * | Issue #16350: Fix zlib decompressor handling of unused_data with multiple ↵ | Nadeem Vawda | 2012-11-04 | 1 | -0/+13 |
| | | | | | | | calls to decompress() after EOF. Patch by Serhiy Storchaka. | ||||
| * | #5057: the peepholer no longer optimizes subscription on unicode literals ↵ | Ezio Melotti | 2012-11-04 | 1 | -6/+7 |
| | | | | | (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds. | ||||
| * | #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an ↵ | Ezio Melotti | 2012-11-03 | 1 | -0/+20 |
| | | | | | error. | ||||
| * | #12759: sre_parse now raises a proper error when the name of the group is ↵ | Ezio Melotti | 2012-11-03 | 1 | -0/+20 |
| | | | | | missing. Initial patch by Serhiy Storchaka. | ||||
| * | #16152: fix tokenize to ignore whitespace at the end of the code when no ↵ | Ezio Melotti | 2012-11-03 | 1 | -0/+4 |
| | | | | | newline is found. Patch by Ned Batchelder. | ||||
