summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* in ftp cache pruning, avoid changing the size of a dict while iterating over ...Benjamin Peterson2014-06-071-1/+31
* allow the keyword else immediately after (no space) an integer (closes #21642)Benjamin Peterson2014-06-071-0/+6
* Fix asyncio tests on Windows: wait for the subprocess exitVictor Stinner2014-06-031-0/+2
* Issue #21651: Fix ResourceWarning when running asyncio tests on Windows.Victor Stinner2014-06-031-0/+1
* cleanup test_asyncio/test_base_events.py: cm variable was unusedVictor Stinner2014-06-031-1/+1
* Issue #21119: asyncio: Make sure that socketpair() close sockets on errorVictor Stinner2014-06-031-0/+9
* Issue #21119: asyncio now closes sockets on errorsVictor Stinner2014-06-032-0/+39
* Issue #21643: Updated test and fixed logic bug in lib64 symlink creation.Vinay Sajip2014-06-031-11/+16
* Issue #18492: Allow all resources when tests are not run by regrtest.py.Zachary Ware2014-06-028-38/+13
* Issue #21639: Add a test to check that PyMem_Malloc(0) with tracemalloc enabledVictor Stinner2014-06-021-0/+6
* Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on Windows.Victor Stinner2014-06-021-10/+12
* Issue #21634: Fix pystone micro-benchmark: use floor division instead of trueVictor Stinner2014-06-021-3/+10
* Skip test_subprocess test_close_fds_when_max_fd_is_lowered on FreeBSDGregory P. Smith2014-06-011-0/+3
* Attempt to fix the "too many open files" errors on several of theGregory P. Smith2014-06-011-4/+6
* Explicitly wait for the child instead of letting a destructor do it.Gregory P. Smith2014-06-011-1/+1
* Don't restrict ourselves to a "max" fd when closing fds before exec()Gregory P. Smith2014-06-011-0/+53
* Test correct getXXX methods in Tkinter bigmem tests.Serhiy Storchaka2014-05-301-3/+3
* Issue #21552: Fixed possible integer overflow of too long string lengths inSerhiy Storchaka2014-05-301-1/+26
* Add tests for getint, getdouble and getboolean methods of the tkapp object.Serhiy Storchaka2014-05-301-0/+44
* Fix issue #14315: The zipfile module now ignores extra fields in the centralGregory P. Smith2014-05-301-0/+15
* Issue #21493: Added test for ntpath.expanduser(). Original patch bySerhiy Storchaka2014-05-281-0/+35
* Fix for raising exception not derived from BaseException in _SelectorSslTrans...Andrew Svetlov2014-05-271-0/+4
* Issue #21481: Teach argparse equality tests to return NotImplemented when co...Raymond Hettinger2014-05-261-0/+6
* Issue 8743: Improve interoperability between sets and the collections.Set abs...Raymond Hettinger2014-05-261-4/+156
* Issue 13355: Make random.triangular degrade gracefully when low == high.Raymond Hettinger2014-05-261-1/+1
* Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok.Serhiy Storchaka2014-05-251-0/+60
* Issue #14710: Fix both pkgutil.find_loader() and get_loader() to notBrett Cannon2014-05-231-0/+14
* Issue #21538: The plistlib module now supports loading of binary plist filesSerhiy Storchaka2014-05-231-0/+12
* Issue #21523: Fix over-pessimistic computation of the stack effect of some op...Antoine Pitrou2014-05-231-3/+39
* asyncio: test_base_events: use mock.Mock instead of unittest.mock.Mock toVictor Stinner2014-05-201-1/+1
* Issue #20998: Fixed re.fullmatch() of repeated single character patternSerhiy Storchaka2014-05-141-0/+5
* Issue #21075: fileinput.FileInput now reads bytes from standard stream ifSerhiy Storchaka2014-05-141-1/+9
* Issue #21497: faulthandler functions now raise a better error if sys.stderr isVictor Stinner2014-05-141-0/+25
* Backed out changeset 6ceedbd88b5fVictor Stinner2014-05-141-12/+0
* Issue #21488: Add support of keyword arguments for codecs.encode and codecs.d...Victor Stinner2014-05-141-0/+12
* Issue #21499: Ignore __builtins__ in several test_importlib.test_api tests.Eric Snow2014-05-131-7/+8
* Fix test-order-dependend asyncio test failure caused by rev 909ea8cc86bbab92d...Guido van Rossum2014-05-131-6/+9
* - Issue #17756: Fix test_code test when run from the installed location.doko@ubuntu.com2014-05-131-1/+1
* Issue #21422: Add a test to check that bool << int and bool >> int return an intVictor Stinner2014-05-121-0/+7
* asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ...Guido van Rossum2014-05-121-0/+36
* Try to fix issue #21425 workaround for shared library buildsAntoine Pitrou2014-05-111-2/+2
* Fix printing out error message when test fails and run with -bbAntoine Pitrou2014-05-111-1/+1
* Try workaround for test issues in #21425Antoine Pitrou2014-05-111-0/+8
* Issue #21425: Fix flushing of standard streams in the interactive interpreter.Antoine Pitrou2014-05-112-2/+51
* Issue #21435: Segfault in gc with cyclic trashTim Peters2014-05-081-0/+32
* Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush...Antoine Pitrou2014-05-082-0/+33
* asyncio: Fix the second half of issue #21447: race in _write_to_self().Guido van Rossum2014-05-061-2/+3
* Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0.Larry Hastings2014-05-041-0/+30
* Issue #18604: Skip the Tk instantiation test on OS X because it canNed Deily2014-05-041-1/+3
* use with blocks to make sure files are closedBenjamin Peterson2014-05-041-18/+12