Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix #444582. Add shutil.which function for finding programs on the system path. | Brian Curtin | 2012-06-22 | 2 | -2/+93 |
| | |||||
* | merge | Alexander Belopolsky | 2012-06-22 | 1 | -19/+21 |
|\ | |||||
| * | Issue #14769: Incorporated mildly pedantic feedback from python-dev. | Larry Hastings | 2012-06-22 | 1 | -19/+21 |
| | | | | | | | | | | Mostly documentation changes; the code changes are clarifications, not semantic changes. | ||||
* | | Issue #9527: tm_gmtoff has 'correct' sign. | Alexander Belopolsky | 2012-06-22 | 2 | -5/+7 |
|/ | |||||
* | Merge | Antoine Pitrou | 2012-06-22 | 1 | -0/+6 |
|\ | |||||
| * | Issue #14785: Add sys._debugmallocstats() to help debug low-level memory ↵ | David Malcolm | 2012-06-22 | 1 | -0/+6 |
| | | | | | | | | allocation issues | ||||
* | | Issue #14837: SSL errors now have `library` and `reason` attributes ↵ | Antoine Pitrou | 2012-06-22 | 1 | -2/+43 |
|/ | | | | | | | | | | | | | | | | | | | | describing precisely what happened and in which OpenSSL submodule. The str() of a SSLError is also enhanced accordingly. NOTE: this commit creates a reference leak. The leak seems tied to the use of PyType_FromSpec() to create the SSLError type. The leak is on the type object when it is instantiated: >>> e = ssl.SSLError() >>> sys.getrefcount(ssl.SSLError) 35 >>> e = ssl.SSLError() >>> sys.getrefcount(ssl.SSLError) 36 >>> e = ssl.SSLError() >>> sys.getrefcount(ssl.SSLError) 37 | ||||
* | Closes #10142: Support for SEEK_HOLE/SEEK_DATA | Jesus Cea | 2012-06-22 | 4 | -9/+35 |
| | |||||
* | Issue #9527: datetime.astimezone() method will now supply a class | Alexander Belopolsky | 2012-06-22 | 2 | -4/+4 |
| | | | | | timezone instance corresponding to the system local timezone when called with no arguments. | ||||
* | Issue #9527: datetime.astimezone() method will now supply a class | Alexander Belopolsky | 2012-06-22 | 2 | -5/+44 |
| | | | | | timezone instance corresponding to the system local timezone when called with no arguments. | ||||
* | Issue #14769: test_capi now has SkipitemTest, which cleverly checks | Larry Hastings | 2012-06-22 | 1 | -1/+70 |
| | | | | | for "parity" between PyArg_ParseTuple() and the Python/getargs.c static function skipitem() for all possible "format units". | ||||
* | Issue #14653: email.utils.mktime_tz() no longer relies on system | Alexander Belopolsky | 2012-06-22 | 2 | -4/+10 |
|\ | | | | | | | mktime() when timezone offest is supplied. | ||||
| * | Issue #14653: email.utils.mktime_tz() no longer relies on system | Alexander Belopolsky | 2012-06-22 | 2 | -4/+10 |
| | | | | | | | | mktime() when timezone offest is supplied. | ||||
* | | Tidy up comments from dd4f7d5c51c7 (zlib compression dictionary support). | Nadeem Vawda | 2012-06-21 | 1 | -7/+6 |
| | | |||||
* | | Make lzma.{encode,decode}_filter_properties private. | Nadeem Vawda | 2012-06-21 | 3 | -17/+17 |
| | | | | | | | | | | | | | | | | These functions were originally added to support LZMA compression in the zipfile module, and are not of interest for the majority of users. They can be made public in 3.4 if there is user interest, but in the meanwhile, I've opted to present a smaller, simpler API for the module's initial release. | ||||
* | | #10053: Don't close FDs when FileIO.__init__ fails | Hynek Schlawack | 2012-06-21 | 1 | -0/+11 |
|\ \ | |/ | | | | | Loosely based on the work by Hirokazu Yamamoto. | ||||
| * | #10053: Don't close FDs when FileIO.__init__ fails | Hynek Schlawack | 2012-06-21 | 1 | -0/+11 |
| | | | | | | | | Loosely based on the work by Hirokazu Yamamoto. | ||||
* | | Issue #14684: Add support for predefined compression dictionaries to the ↵ | Nadeem Vawda | 2012-06-21 | 1 | -0/+30 |
| | | | | | | | | | | | | zlib module. Original patch by Sam Rushing. | ||||
* | | Prefer assertEqual to simply assert per recommendation in issue6727. | Jason R. Coombs | 2012-06-20 | 1 | -3/+8 |
| | | | | | | | | Clarified comment on disabled code to reference issue15093. | ||||
* | | Issue #15096: Drop support for the ur string prefix | Christian Heimes | 2012-06-20 | 3 | -29/+14 |
| | | |||||
* | | Fix GzipFile's handling of filenames given as bytes objects. | Nadeem Vawda | 2012-06-19 | 4 | -4/+57 |
|\ \ | |/ | | | | | Add relevant tests for GzipFile, and also for BZ2File and LZMAFile. | ||||
| * | Fix GzipFile's handling of filenames given as bytes objects. | Nadeem Vawda | 2012-06-19 | 2 | -4/+18 |
| | | |||||
* | | Fix #14772: Return the destination from some shutil functions. | Brian Curtin | 2012-06-18 | 2 | -3/+51 |
| | | |||||
* | | Issue #15064: Make BaseManager.__enter__() start server if necessary. | Richard Oudkerk | 2012-06-18 | 2 | -6/+23 |
| | | |||||
* | | Issue #15064: Implement context manager protocol for multiprocessing types | Richard Oudkerk | 2012-06-18 | 4 | -1/+70 |
| | | |||||
* | | Issue #15101: Make pool finalizer avoid joining current thread. | Richard Oudkerk | 2012-06-18 | 1 | -3/+6 |
|\ \ | |/ | |||||
| * | Issue #15101: Make pool finalizer avoid joining current thread. | Richard Oudkerk | 2012-06-18 | 1 | -3/+6 |
| | | |||||
* | | Fiddle with timeouts in barrier tests | Richard Oudkerk | 2012-06-18 | 1 | -6/+6 |
| | | |||||
* | | Prevent test_inspect from keeping alive a ton of frames and local variables ↵ | Antoine Pitrou | 2012-06-17 | 2 | -13/+16 |
| | | | | | | | | | | | | by way of a global variable keeping a reference to a traceback. Should fix some buildbot failures. | ||||
* | | Issue #14657: The frozen instance of importlib used for bootstrap is now ↵ | Antoine Pitrou | 2012-06-17 | 2 | -9/+34 |
| | | | | | | | | also the module imported as importlib._bootstrap. | ||||
* | | Merge: Update out of date docstring. | R David Murray | 2012-06-17 | 1 | -7/+5 |
|\ \ | |/ | |||||
| * | Update out of date docstring. | R David Murray | 2012-06-17 | 1 | -7/+5 |
| | | |||||
* | | Merge from 3.2 (Ignore X-Antivirus headers in test_nntplib) | Nick Coghlan | 2012-06-17 | 1 | -1/+4 |
|\ \ | |/ | |||||
| * | Ignore X-Antivirus headers in test_nntplib | Nick Coghlan | 2012-06-17 | 1 | -1/+4 |
| | | |||||
* | | Merge from 3.2 (Issue #15095: Use better assertions in test_imaplib) | Nick Coghlan | 2012-06-17 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | Issue #15095: Use better assertions in test_imaplib | Nick Coghlan | 2012-06-17 | 1 | -5/+5 |
| | | |||||
* | | Merge from 3.2 (Issue #15043: skip test_gdb if the custom hooks can't be loaded) | Nick Coghlan | 2012-06-17 | 1 | -0/+9 |
|\ \ | |/ | |||||
| * | Issue #15043: skip test_gdb if the custom hooks can't be loaded | Nick Coghlan | 2012-06-17 | 1 | -0/+9 |
| | | |||||
* | | Disable test on Unix. Causes buildbots to fail. See Issue #15091 | Jason R. Coombs | 2012-06-17 | 1 | -0/+4 |
| | | |||||
* | | White space normalization. | Martin v. Löwis | 2012-06-17 | 1 | -3/+3 |
| | | |||||
* | | Issue #14055: Add __sizeof__ support to _elementtree. | Martin v. Löwis | 2012-06-17 | 1 | -2/+37 |
| | | |||||
* | | Adding test from issue6727 demonstrating that symlink import issue does not ↵ | Jason R. Coombs | 2012-06-17 | 1 | -0/+53 |
| | | | | | | | | occur here in 3.3 | ||||
* | | Improve an internal ipaddress test, add a comment explaining why treating ↵ | Nick Coghlan | 2012-06-17 | 2 | -17/+31 |
| | | | | | | | | networks as containers of interfaces rather than addresses would prove confusing | ||||
* | | Issue #15054: Fix incorrect tokenization of 'b' string literals. | Meador Inge | 2012-06-17 | 2 | -1/+77 |
| | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | Normalize whitespace | Antoine Pitrou | 2012-06-16 | 2 | -2/+0 |
| | | |||||
* | | Issue #14874: Restore charmap decoding speed to pre-PEP 393 levels. | Antoine Pitrou | 2012-06-16 | 8 | -426/+1079 |
| | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | Make the test more resilient to test-run order (closes #15075) | Eli Bendersky | 2012-06-16 | 1 | -8/+20 |
| | | |||||
* | | Fix "%f" format of str%args if the result is not an ASCII or latin1 string | Victor Stinner | 2012-06-16 | 1 | -0/+2 |
| | | |||||
* | | Issue #15006: Allow equality comparison between naive and aware time | Alexander Belopolsky | 2012-06-16 | 2 | -14/+20 |
| | | | | | | | | or datetime objects. | ||||
* | | Issue #14938: importlib.abc.SourceLoader.is_package() now takes the | Brett Cannon | 2012-06-16 | 2 | -3/+6 |
| | | | | | | | | | | | | | | | | | | module name into consideration when determining whether a module is a package or not. This prevents importing a module's __init__ module directly and having it considered a package, which can lead to duplicate sub-modules. Thanks to Ronan Lamy for reporting the bug. |