Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou. | Antoine Pitrou | 2010-10-31 | 4 | -32/+114 |
| | |||||
* | Updated NEWS about logging.basicConfig(). | Vinay Sajip | 2010-10-31 | 1 | -0/+2 |
| | |||||
* | Added style argument to logging.basicConfig() and documented this change. | Vinay Sajip | 2010-10-31 | 2 | -1/+19 |
| | |||||
* | PY_CFLAGS doesn't exist under Windows | Antoine Pitrou | 2010-10-31 | 1 | -1/+1 |
| | |||||
* | Issue #5729: json.dumps to support using '\t' as an indent string | Raymond Hettinger | 2010-10-31 | 4 | -26/+38 |
| | |||||
* | Fix a ResourceWarning for an unclosed socket. | Brian Curtin | 2010-10-31 | 1 | -0/+1 |
| | |||||
* | issue 10237 | Kristján Valur Jónsson | 2010-10-31 | 1 | -4/+7 |
| | | | | After increasing the default timeout for the barrier, the unittest for the default timeout must be adjusted | ||||
* | close some more files | Benjamin Peterson | 2010-10-31 | 1 | -0/+7 |
| | |||||
* | context managerify | Benjamin Peterson | 2010-10-31 | 1 | -112/+111 |
| | |||||
* | close file properly | Benjamin Peterson | 2010-10-31 | 1 | -1/+2 |
| | |||||
* | use addCleanup | Benjamin Peterson | 2010-10-31 | 1 | -12/+12 |
| | |||||
* | patch up leaking fds | Benjamin Peterson | 2010-10-31 | 1 | -22/+21 |
| | |||||
* | this test manages the fds itself | Benjamin Peterson | 2010-10-31 | 1 | -0/+1 |
| | |||||
* | Fix ResourceWarning for unclosed files (from os.popen) | Brian Curtin | 2010-10-31 | 1 | -7/+7 |
| | |||||
* | Issues #7061, #10225: Fixed doctests in turtle manual | Alexander Belopolsky | 2010-10-31 | 1 | -24/+21 |
| | |||||
* | Fix ResourceWarning for an unclosed socket. | Brian Curtin | 2010-10-31 | 1 | -0/+1 |
| | | | | test_return_header_keep_alive - Added a cleanup call for the socket. | ||||
* | Fix ResourceWarning. Use context manager to properly close file. | Brian Curtin | 2010-10-31 | 1 | -11/+12 |
| | |||||
* | Fix ResourceWarning about unclosed file | Brian Curtin | 2010-10-30 | 1 | -1/+0 |
| | |||||
* | close files correctly | Benjamin Peterson | 2010-10-30 | 1 | -11/+12 |
| | |||||
* | if FileIO.__init__ fails, close fd | Benjamin Peterson | 2010-10-30 | 2 | -0/+4 |
| | |||||
* | fix style | Benjamin Peterson | 2010-10-30 | 1 | -1/+1 |
| | |||||
* | close open file from find_module() | Benjamin Peterson | 2010-10-30 | 1 | -0/+1 |
| | |||||
* | condense | Benjamin Peterson | 2010-10-30 | 1 | -5/+1 |
| | |||||
* | kill pointless function imports | Benjamin Peterson | 2010-10-30 | 1 | -1/+0 |
| | |||||
* | remove useless assignment | Benjamin Peterson | 2010-10-30 | 1 | -1/+1 |
| | |||||
* | close files properly | Benjamin Peterson | 2010-10-30 | 1 | -0/+2 |
| | |||||
* | Fix #10258 - clean up resource warning | Brian Curtin | 2010-10-30 | 1 | -2/+4 |
| | |||||
* | Fix #10257. Clear resource warnings by using os.popen's context manager. | Brian Curtin | 2010-10-30 | 1 | -8/+10 |
| | |||||
* | Fix #10256 - resource warning | Brian Curtin | 2010-10-30 | 1 | -1/+1 |
| | |||||
* | Issue #10250: fix resource warnings in test_urllib2_localnet. Patch by ↵ | Antoine Pitrou | 2010-10-30 | 1 | -0/+1 |
| | | | | Brian Brazil. | ||||
* | Issue #10253: FileIO leaks a file descriptor when trying to open a file | Antoine Pitrou | 2010-10-30 | 3 | -1/+10 |
| | | | | for append that isn't seekable. Patch by Brian Brazil. | ||||
* | Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. | Hirokazu Yamamoto | 2010-10-30 | 1 | -0/+3 |
| | |||||
* | Fix test_mailbox by supporting context manager protocol for get_file() returns. | Georg Brandl | 2010-10-30 | 3 | -3/+24 |
| | |||||
* | Fix resource warning in test_unicodedata. Patch by Brian Brazil. | Antoine Pitrou | 2010-10-30 | 1 | -0/+1 |
| | |||||
* | Fix resource warning in test_file. Patch by Brian Brazil. | Antoine Pitrou | 2010-10-30 | 1 | -0/+2 |
| | |||||
* | Issue #10246: uu.encode didn't close file objects explicitly when filenames | Antoine Pitrou | 2010-10-30 | 2 | -31/+41 |
| | | | | were given to it. Patch by Brian Brazil. | ||||
* | Remove ResourceWarnings caused by files left open. | Vinay Sajip | 2010-10-30 | 1 | -2/+7 |
| | |||||
* | #10198: fix duplicate header when writeframes() is called with an empty string. | Georg Brandl | 2010-10-30 | 2 | -1/+8 |
| | |||||
* | Issue 10221: Improve error message for dict.pop(). | Raymond Hettinger | 2010-10-30 | 2 | -2/+4 |
| | |||||
* | issue 10237 | Kristján Valur Jónsson | 2010-10-30 | 1 | -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 Cannon | 2010-10-30 | 2 | -9/+15 |
| | |||||
* | Add some missing entries related to the various ResourceWarning fixes I have ↵ | Brett Cannon | 2010-10-30 | 1 | -0/+6 |
| | | | | committed. | ||||
* | Properly close a file in test_minidom. | Brett Cannon | 2010-10-30 | 1 | -3/+4 |
| | |||||
* | Silence some ResourceWarning in test_mailbox by using file context managers. | Brett Cannon | 2010-10-30 | 1 | -2/+6 |
| | | | | Also call super().tearDown() where appropriate. | ||||
* | Windows can't remove a file before it is closed | Antoine Pitrou | 2010-10-29 | 1 | -1/+1 |
| | |||||
* | Move test_linecache over to file context managers. | Brett Cannon | 2010-10-29 | 1 | -4/+6 |
| | |||||
* | Use a file context manager for test_ioctl. | Brett Cannon | 2010-10-29 | 1 | -4/+4 |
| | |||||
* | Silence ResourceWarning when testing that the file destructor closes the file. | Brett Cannon | 2010-10-29 | 1 | -7/+8 |
| | |||||
* | Issue #10233: Close file objects in a timely manner in the tarfile module | Antoine Pitrou | 2010-10-29 | 3 | -36/+58 |
| | | | | and its test suite. | ||||
* | Move test_imp over to file context managers. | Brett Cannon | 2010-10-29 | 1 | -23/+23 |
| |