summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
| | * Fix issue16713 - tel url parsing with paramsSenthil Kumaran2012-12-241-0/+33
| | * Issue #13863: fix incorrect .pyc timestamps on Windows / NTFS (apparently due...Mark Dickinson2012-12-241-0/+41
| | * Fix Issue15701 - HTTPError info method call raises AttributeError. Fix that t...Senthil Kumaran2012-12-231-10/+26
| | * Issue #16045: add more unit tests for built-in int()Andrew Svetlov2012-12-232-0/+56
| | * #8853: Allow port to be of type long for socket.getaddrinfo()Petri Lehtinen2012-12-201-1/+2
| | * call close on the underlying stream even if flush raises (#16597)Benjamin Peterson2012-12-201-0/+27
| | * replace threw with raised (#16714)Andrew Svetlov2012-12-192-2/+2
| | * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1814-25/+25
| | * Issue #16626: Fix infinite recursion in glob.glob() on Windows when the patte...Antoine Pitrou2012-12-161-0/+9
| | * #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-161-1/+6
| | * Issue #16298: In HTTPResponse.read(), close the socket when there is no Conte...Antoine Pitrou2012-12-151-1/+14
| | * Issue #16602: When a weakref's target was part of a long deallocation chain, ...Antoine Pitrou2012-12-081-0/+21
| | * Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised.Victor Stinner2012-12-041-3/+20
| | * Fix test splitting in previous commit.Antoine Pitrou2012-12-031-4/+2
| | * Split the bigmem re test in two separate tests with different memory requirem...Antoine Pitrou2012-12-031-2/+10
| | * Issue #10182: The re module doesn't truncate indices to 32 bits anymore.Antoine Pitrou2012-12-021-0/+16
| | * fix spellingBenjamin Peterson2012-11-301-2/+3
| | * Remove redundant check for symlink. (closes #6036)Benjamin Peterson2012-11-301-13/+14
| | * Issue #9011: AST creation no longer modifies CST for negated numeric literals.Mark Dickinson2012-11-251-0/+11
| | * Issue #16339: Document and test exec(stmt, globals, locals) form in Python 2.7.Mark Dickinson2012-11-251-0/+28
| | * test_winsound should require the "audio" resource, as it does on 3.x.Antoine Pitrou2012-11-241-0/+1
| | * #16306: report only the first unknown option and add more tests. Patch by Se...Ezio Melotti2012-11-231-4/+14
| | * Issue #1160: Fix compiling large regular expressions on UCS2 builds.Antoine Pitrou2012-11-201-0/+6
| | * #7782: add a test for test_iter.Ezio Melotti2012-11-181-0/+15
| | * #16306: Fix multiple error messages when unknown command line parameters wher...Ezio Melotti2012-11-181-1/+10
| | * #14313: zipfile now raises NotImplementedError when the compression type is u...Ezio Melotti2012-11-181-0/+11
| | * Issue #15379: Fix passing of non-BMP characters as integers for the charmap d...Antoine Pitrou2012-11-172-1/+106
| | * Issue #16453: Fix equality testing of dead weakref objects.Antoine Pitrou2012-11-111-11/+69
| | * remove an obsolete commentGregory P. Smith2012-11-111-1/+0
| | * Refactor test_preexec_errpipe to not create an uncollectable reference cycle.Gregory P. Smith2012-11-111-22/+22
| | * whitespace fixGregory P. Smith2012-11-111-1/+1
| | * Fix issue #16140 bug that the fix to issue #16327 added - don't doubleGregory P. Smith2012-11-111-0/+47
| | * Fixes issue #16327: The subprocess module no longer leaks file descriptorsGregory P. Smith2012-11-111-0/+33
| | * Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces...Nadeem Vawda2012-11-111-0/+12
| | * Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco...Nadeem Vawda2012-11-111-9/+21
| | * Issue #15001: fix segfault on "del sys.modules['__main__']"Hynek Schlawack2012-11-071-2/+17
| | * Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal...Nadeem Vawda2012-11-041-0/+13
| | * #5057: the peepholer no longer optimizes subscription on unicode literals (e....Ezio Melotti2012-11-041-6/+7
| | * #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an ...Ezio Melotti2012-11-031-0/+20
| | * #12759: sre_parse now raises a proper error when the name of the group is mis...Ezio Melotti2012-11-031-0/+20
| | * #16152: fix tokenize to ignore whitespace at the end of the code when no newl...Ezio Melotti2012-11-031-0/+4
| | * Issue #16230: Fix a crash in select.select() when one the lists changes size ...Antoine Pitrou2012-11-011-0/+9
| | * Issue #16377: fix missed test due to incorrect indentation in test_bisect. T...Mark Dickinson2012-10-311-1/+1
| | * only fast-path fromkeys() when the constructor returns a empty dict (closes #...Benjamin Peterson2012-10-311-0/+8
| | * Add test for BZ2Decompressor.decompress("") after end of stream.Nadeem Vawda2012-10-281-0/+1
| | * Issue #14700: Fix buggy overflow checks for large precision and width in new-...Mark Dickinson2012-10-282-0/+54
| | * changeset: 80007:49e4541f2aefGeorg Brandl2012-10-281-2/+2
| | * #15043: Improve test_gdb support of gdb >= 7.4.R David Murray2012-10-271-35/+42
| | * Add some tests in 2.7 for Issue #16250Senthil Kumaran2012-10-271-0/+21
| | * Issue #16274: Fix test_asyncore on Solaris.Trent Nelson2012-10-271-2/+3