summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Issue #10253: FileIO leaks a file descriptor when trying to open a fileAntoine Pitrou2010-10-301-0/+1
| | | | for append that isn't seekable. Patch by Brian Brazil.
* Fix test_mailbox by supporting context manager protocol for get_file() returns.Georg Brandl2010-10-301-0/+14
|
* Fix resource warning in test_unicodedata. Patch by Brian Brazil.Antoine Pitrou2010-10-301-0/+1
|
* Fix resource warning in test_file. Patch by Brian Brazil.Antoine Pitrou2010-10-301-0/+2
|
* Issue #10246: uu.encode didn't close file objects explicitly when filenamesAntoine Pitrou2010-10-301-31/+38
| | | | were given to it. Patch by Brian Brazil.
* Remove ResourceWarnings caused by files left open.Vinay Sajip2010-10-301-2/+7
|
* #10198: fix duplicate header when writeframes() is called with an empty string.Georg Brandl2010-10-301-1/+5
|
* issue 10237Kristján Valur Jónsson2010-10-301-1/+1
| | | | Increase the default timout of the barries used in the barrier tests. This should solve unexpected timeouts on some machines.
* Silence ResourceWarnings in modulefinder by using file context managers.Brett Cannon2010-10-301-9/+13
|
* Properly close a file in test_minidom.Brett Cannon2010-10-301-3/+4
|
* Silence some ResourceWarning in test_mailbox by using file context managers.Brett Cannon2010-10-301-2/+6
| | | | Also call super().tearDown() where appropriate.
* Windows can't remove a file before it is closedAntoine Pitrou2010-10-291-1/+1
|
* Move test_linecache over to file context managers.Brett Cannon2010-10-291-4/+6
|
* Use a file context manager for test_ioctl.Brett Cannon2010-10-291-4/+4
|
* Silence ResourceWarning when testing that the file destructor closes the file.Brett Cannon2010-10-291-7/+8
|
* Issue #10233: Close file objects in a timely manner in the tarfile moduleAntoine Pitrou2010-10-292-36/+55
| | | | and its test suite.
* Move test_imp over to file context managers.Brett Cannon2010-10-291-23/+23
|
* Move test_httpservers over to file context managers.Brett Cannon2010-10-291-12/+11
|
* Clean up socket closing in test_ssl and test.ssl_serversAntoine Pitrou2010-10-292-24/+35
|
* Move test_httplib over to file context managers.Brett Cannon2010-10-291-27/+25
|
* Fix file closing in test_http_cookiejar.Brett Cannon2010-10-291-5/+5
|
* Clean up socket closing in test_ftplib.Brett Cannon2010-10-291-35/+34
|
* Properly close files used by test_email.Brett Cannon2010-10-291-3/+4
|
* Properly close a temporary TextIOWrapper in 'email'.Brett Cannon2010-10-291-1/+2
|
* Properly close files in test_dbm_dumb.Brett Cannon2010-10-291-2/+4
|
* Properly close a test file in test_cprofile.Brett Cannon2010-10-291-9/+10
|
* have test_asyncore properly close files.Brett Cannon2010-10-291-2/+4
|
* Have pkgutil properly close files.Brett Cannon2010-10-291-1/+2
|
* Have distutils.sysconfig close a file to remove ResourceWarnings coming upBrett Cannon2010-10-291-1/+2
| | | | during the build from setup.py.
* set literals and unions are our friendsBenjamin Peterson2010-10-291-4/+3
|
* make gdb skip expectedBenjamin Peterson2010-10-293-11/+19
|
* Fix typoAntoine Pitrou2010-10-291-1/+1
|
* Make a GC run before trying to clean up files left over byAntoine Pitrou2010-10-291-0/+6
| | | | the latest test run.
* Issue #7547: fix transient failures due to network glitches in test_timeout.Antoine Pitrou2010-10-291-9/+11
| | | | Patch by Sandro Tosi.
* Issue 7061: Explained 'gon'Alexander Belopolsky2010-10-291-1/+4
|
* Actually restore the original asyncore socket map by making a copy of the dictAntoine Pitrou2010-10-291-3/+6
|
* Make check_warnings error messages more informativeAntoine Pitrou2010-10-291-7/+7
|
* test___all__ ignores ResourceWarning as wellAntoine Pitrou2010-10-291-2/+4
|
* Fix ResourceWarning in Lib/test/threaded_import_hangers.pyAntoine Pitrou2010-10-291-1/+1
|
* test_tarfile: woops, remove +0.001 which was used to debugVictor Stinner2010-10-291-1/+1
|
* test_tarfile: dump mtime as hexadecimal on test_extractall failureVictor Stinner2010-10-291-1/+11
|
* Issue #10093: ResourceWarnings are now issued when files and sockets areAntoine Pitrou2010-10-294-12/+81
| | | | | deallocated without explicit closing. These warnings are silenced by default, except in pydebug mode.
* Add read support for all missing variants of the GNU sparseLars Gustäbel2010-10-293-126/+175
| | | | | | | | extensions. Thus, in addition to GNUTYPE_SPARSE headers, sparse information in pax headers created by GNU tar can now be decoded. All three formats 0.0, 0.1 and 1.0 are supported. On filesystems that support this, holes in files are now restored whenever a sparse member is extracted.
* decrement offset when it points to a newline (#10186 followup)Benjamin Peterson2010-10-291-0/+4
|
* Issue #10210: os.get_exec_path() ignores BytesWarning warningsVictor Stinner2010-10-292-3/+20
|
* #10209, test_pep277: disable test_normalize and test_listdir on darwinVictor Stinner2010-10-281-13/+9
| | | | These tests are irrevelant on this OS.
* test_pep277: disable filenames 11, 12, 13, 14 on darwinVictor Stinner2010-10-281-5/+6
| | | | | Because darwin "normalizes" these filenames differently than Python's NFD normalization.
* Issue #5437: A preallocated MemoryError instance should not hold tracebackAntoine Pitrou2010-10-281-0/+39
| | | | data (including local variables caught in the stack trace) alive infinitely.
* Fixed a typo in a comment.Alexander Belopolsky2010-10-281-1/+1
|
* #10116: wrap transient_internet() around net access in test_urllib2net.Georg Brandl2010-10-281-69/+85
|