- a2d6d71 call close on the underlying stream even if flush raises (#16597) by Benjamin Peterson · 13 years ago
- bacf1bf replace threw with raised (#16714) by Andrew Svetlov · 13 years ago
- 4bb142b Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 13 years ago
- 124ee8b Issue #16626: Fix infinite recursion in glob.glob() on Windows when the pattern contains a wildcard in the drive or UNC path. by Antoine Pitrou · 13 years ago
- 646c7b5 #16664: Add regression tests for glob's behaviour concerning "."-entries by Hynek Schlawack · 13 years ago
- 4113d2b Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished. by Antoine Pitrou · 13 years ago
- d38c990 Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. by Antoine Pitrou · 13 years ago
- 8c7c697 Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. by Victor Stinner · 13 years ago
- 74635c9 Fix test splitting in previous commit. by Antoine Pitrou · 13 years ago
- 735f36e Split the bigmem re test in two separate tests with different memory requirements. by Antoine Pitrou · 13 years ago
- b83575b Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 13 years ago
- 7196605 fix spelling by Benjamin Peterson · 13 years ago
- 8a1a17b Remove redundant check for symlink. (closes #6036) by Benjamin Peterson · 13 years ago
- b1cc6aa Issue #9011: AST creation no longer modifies CST for negated numeric literals. by Mark Dickinson · 13 years ago
- 1658797 Issue #16339: Document and test exec(stmt, globals, locals) form in Python 2.7. by Mark Dickinson · 13 years ago
- 508d7d3 test_winsound should require the "audio" resource, as it does on 3.x. by Antoine Pitrou · 13 years ago
- ec6486d #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 13 years ago
- b83ea14 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 13 years ago
- 6451497 #7782: add a test for test_iter. by Ezio Melotti · 13 years ago
- db5947f #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 13 years ago
- 9e94972 #14313: zipfile now raises NotImplementedError when the compression type is unknown. by Ezio Melotti · 13 years ago
- e3ae321 Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings). by Antoine Pitrou · 13 years ago
- b704eab Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 13 years ago
- 027d6fc remove an obsolete comment by Gregory P. Smith · 13 years ago
- f047ba8 Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 13 years ago
- c319725 whitespace fix by Gregory P. Smith · 13 years ago
- 211248b Fix issue #16140 bug that the fix to issue #16327 added - don't double by Gregory P. Smith · 13 years ago
- 9d3b6e9 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 13 years ago
- 3c30970 Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. by Nadeem Vawda · 13 years ago
- 252f4dc Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). by Nadeem Vawda · 13 years ago
- b271b3e Issue #15001: fix segfault on "del sys.modules['__main__']" by Hynek Schlawack · 13 years ago
- 6cad371 Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF. by Nadeem Vawda · 13 years ago
- c18cc0e #5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds. by Ezio Melotti · 13 years ago
- 67dc4a8 #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 13 years ago
- ef31738 #12759: sre_parse now raises a proper error when the name of the group is missing. Initial patch by Serhiy Storchaka. by Ezio Melotti · 13 years ago
- 7d24b16 #16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder. by Ezio Melotti · 13 years ago
- 0552fc2 Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 13 years ago
- 4ca83ec Issue #16377: fix missed test due to incorrect indentation in test_bisect. Thanks Yury Selivanov. by Mark Dickinson · 13 years ago
- 0ec820f only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 13 years ago
- 8e0dfea Add test for BZ2Decompressor.decompress("") after end of stream. by Nadeem Vawda · 13 years ago
- 75d3600 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 13 years ago
- 08114d4 changeset: 80007:49e4541f2aef by Georg Brandl · 13 years ago
- 3e66f0d #15043: Improve test_gdb support of gdb >= 7.4. by R David Murray · 13 years ago
- f8d370e Add some tests in 2.7 for Issue #16250 by Senthil Kumaran · 13 years ago
- e999229 Issue #16274: Fix test_asyncore on Solaris. by Trent Nelson · 13 years ago
- 9ad6a56 #15040: Close files in mailbox tests for PyPy compatibility by Petri Lehtinen · 13 years ago
- 45dba1d Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 13 years ago
- dd72b3f Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile(). by Nadeem Vawda · 13 years ago
- c308483 Fix whacky spacing in test_wsgiref by Antoine Pitrou · 13 years ago
- e97a24d Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 13 years ago
- 33b0fc2 No reason to use a generator here by Nick Coghlan · 13 years ago
- 097708a Issue #6074: Actually delete the source file in the test as intended by Nick Coghlan · 13 years ago
- b48c028 Issue #6074: Restore the long-broken support for running with read-only source files on Windows by Nick Coghlan · 13 years ago
- 02f69f6 Issue #16274: revert r79813:90a46f8943d0 changes to asyncore/test_asyncore. by Trent Nelson · 13 years ago
- 0622f6c Issue #16274: backport of 3.2's asyncore/test_asyncore to 2.7. by Trent Nelson · 13 years ago
- 6a7f867 Issue #16257: make test_create_connection() handle ENETUNREACH. by Trent Nelson · 13 years ago
- eadca1d Also add tests for TextIOWrapper.writelines() (issue #15744). by Antoine Pitrou · 13 years ago
- 78e761e Add tests for the writelines() method of file objects. by Antoine Pitrou · 13 years ago
- bf67ba8 only run doctests when __doc__ is around by Benjamin Peterson · 13 years ago
- fd6d3b1 fix typo by Benjamin Peterson · 13 years ago
- ca01a76 don't expect warnings from doctests if they can't run by Benjamin Peterson · 13 years ago
- 9971616 Fixes Issue #12268 for the io module - File readline, readlines and by Gregory P. Smith · 13 years ago
- 313dc9b Clean up a test turd. by Mark Dickinson · 13 years ago
- 0798cbc Issue #15756: subprocess.poll() now properly handles errno.ECHILD to by Gregory P. Smith · 13 years ago
- 218a8ab Issues #16029, #16030: Fix pickling and repr of large xranges. by Mark Dickinson · 13 years ago
- fb2e8a7 #15222: Fix a test failure on Windows by Petri Lehtinen · 13 years ago
- a4fd0dc #15222: Insert blank line after each message in mbox mailboxes by Petri Lehtinen · 13 years ago
- ec2807c #15222: test_mailbox: End message template in a newline by Petri Lehtinen · 13 years ago
- d41dc7c 2.7 : Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. by Senthil Kumaran · 13 years ago
- 8112ea2 Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD() by Christian Heimes · 13 years ago
- cadff70 #15421: fix an OverflowError in Calendar.itermonthdates() after datetime.MAXYEAR. Patch by Cédric Krier. by Ezio Melotti · 13 years ago
- fb2f409 remove gdb noise about linux-vdso by Benjamin Peterson · 13 years ago
- 6d6fb3a #15970: xml.etree.ElementTree now serializes correctly the empty HTML elements "meta" and "param". by Ezio Melotti · 13 years ago
- 03937a8 A follow up for issue #15906: change the test for calling the type conversion by Barry Warsaw · 13 years ago
- 03fcfbe - Issue #15906: Fix a regression in argparse caused by the preceding change, by Barry Warsaw · 13 years ago
- a8a5b39 Closes #15793: Stack corruption in ssl.RAND_egd(). Python 2.7 hasn't any issue about this, but add a test just to be sure by Jesus Cea · 13 years ago
- 20f0ea1 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 13 years ago
- 3fb774e Closes #15910: MD5 and SHA1 crash when "updated" with strings bigger than 2**32 bytes by Jesus Cea · 13 years ago
- 03a9d2a Closes #15908: SHA1 crashes in 64 bits when the string to hash is bigger than 2**32 bytes by Jesus Cea · 13 years ago
- 4709ac1 #14649: add sample files omitted from previous checkin. by R David Murray · 13 years ago
- 8d58053 #14649: clarify DocTestSuite error when there are no docstrings. by R David Murray · 13 years ago
- 7a8634d backport from the trunk, to fix test_tools with srcdir != builddir by doko@ubuntu.com · 13 years ago
- 8b54d6d Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 13 years ago
- 1b6e7c4 #15510: clarify textwrap's handling of whitespace, and add confirming tests. by R David Murray · 13 years ago
- a99c7de #15847: allow args to be a tuple in parse_args by R David Murray · 13 years ago
- 58098a7 Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 13 years ago
- c5eec0e Issue #15841: The readable(), writable() and seekable() methods of io.BytesIO by Antoine Pitrou · 13 years ago
- 80f4553 #15802: Fix test logic in TestMaildir.test_create_tmp by Petri Lehtinen · 13 years ago
- 2010187 #12776,#11839: call argparse type function only once. by R David Murray · 13 years ago
- da4277a Issue #15765: Fix quirky NetBSD getcwd() behaviour. by Trent Nelson · 13 years ago
- 23d49d3 use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 13 years ago
- c63be46 Remove overeager test (don't depend on the sign of a nan; cf. issue #14521) by Mark Dickinson · 13 years ago
- 088cec3 Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs. by Mark Dickinson · 13 years ago
- 2d44cee #11062: Fix adding a message from file to Babyl mailbox by Petri Lehtinen · 13 years ago
- 7cd8b42 #9161: Fix test to use standard optparse test pattern (what was I thinking?) by R David Murray · 13 years ago
- faee75c Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing by Richard Oudkerk · 13 years ago
- fe9efc5 #9161: add test for the bug fixed by r82581. by R David Murray · 13 years ago
- bc77d36 Fix #15496. Add directory removal helpers to make Windows tests more reliable. Patch by Jeremy Kloth by Brian Curtin · 13 years ago
- d26b658 Graft a89d654adaa2 from 3.2 branch. Fixes #15620. by Georg Brandl · 13 years ago
- 2d639d5 Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 13 years ago