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 | 4 | -2/+121 |
| | |||||
* | Merge heads | Martin v. Löwis | 2012-06-22 | 6 | -32/+43 |
|\ | |||||
| * | Merge | Antoine Pitrou | 2012-06-22 | 5 | -32/+32 |
| |\ | |||||
| | * | 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 | 4 | -13/+11 |
| | |/ | |||||
| * | | Add a docstring at the top of Tools/ssl/make_ssl_data.py | Antoine Pitrou | 2012-06-22 | 1 | -0/+11 |
| |/ | |||||
* | | Issue #15143: Define _DEBUG when compiling resources. | Martin v. Löwis | 2012-06-22 | 1 | -0/+3 |
|/ | |||||
* | Merge | Antoine Pitrou | 2012-06-22 | 26 | -60/+239 |
|\ | |||||
| * | Issue #14785: Add sys._debugmallocstats() to help debug low-level memory ↵ | David Malcolm | 2012-06-22 | 24 | -35/+217 |
| | | | | | | | | allocation issues | ||||
| * | Issue #15124: Optimize _thread.LockType deletion and acquisition when | Kristjan Valur Jonsson | 2012-06-22 | 1 | -21/+17 |
| | | | | | | | | not contested, similar to what _thread.RLock already has. | ||||
| * | Fixed compiler warnings in datetime_astimezone() | Alexander Belopolsky | 2012-06-22 | 1 | -4/+5 |
| | | |||||
* | | Add forgotten files for #14837. | Antoine Pitrou | 2012-06-22 | 2 | -0/+1710 |
| | | |||||
* | | Issue #14837: SSL errors now have `library` and `reason` attributes ↵ | Antoine Pitrou | 2012-06-22 | 4 | -65/+262 |
|/ | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | Issue #9527: Fixes for platforms without tm_zone | Alexander Belopolsky | 2012-06-22 | 1 | -20/+22 |
| | |||||
* | merge | Alexander Belopolsky | 2012-06-22 | 9 | -12/+71 |
|\ | |||||
| * | Closes #10142: Support for SEEK_HOLE/SEEK_DATA | Jesus Cea | 2012-06-22 | 9 | -12/+71 |
| | | |||||
* | | Issue #7582: Use ISO timestamp in diff.py | Alexander Belopolsky | 2012-06-22 | 1 | -4/+12 |
|/ | |||||
* | 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 | 5 | -12/+138 |
| | | | | | 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 | 3 | -39/+134 |
| | | | | | for "parity" between PyArg_ParseTuple() and the Python/getargs.c static function skipitem() for all possible "format units". | ||||
* | Whitespace normalization | Martin v. Löwis | 2012-06-22 | 1 | -2/+2 |
| | |||||
* | Add Stable ABI documentation. | Martin v. Löwis | 2012-06-22 | 2 | -0/+40 |
| | |||||
* | Issue #15042: Add PyState_AddModule and PyState_RemoveModule. | Martin v. Löwis | 2012-06-22 | 5 | -3/+77 |
| | | | | | | Add version guard for Py_LIMITED_API additions. Issue #15081: Document PyState_FindModule. Patch by Robin Schreiber. | ||||
* | Simplify code in fileio_init | Hynek Schlawack | 2012-06-22 | 1 | -2/+1 |
| | | | | | | If an identical code line is in both at the end of if and else, it can as well stand after the block. :) The code is from 464cf523485e, I didn't see it before checking the commits in the web interface of course. | ||||
* | Issue #14653: email.utils.mktime_tz() no longer relies on system | Alexander Belopolsky | 2012-06-22 | 3 | -4/+13 |
|\ | | | | | | | mktime() when timezone offest is supplied. | ||||
| * | Issue #14653: email.utils.mktime_tz() no longer relies on system | Alexander Belopolsky | 2012-06-22 | 3 | -4/+13 |
| | | | | | | | | mktime() when timezone offest is supplied. | ||||
* | | Document the rest of zlib.compressobj()'s arguments. | Nadeem Vawda | 2012-06-21 | 3 | -8/+36 |
| | | | | | | | | Original patch by Jim Jewett; see issue 14684. | ||||
* | | Tidy up comments from dd4f7d5c51c7 (zlib compression dictionary support). | Nadeem Vawda | 2012-06-21 | 2 | -8/+7 |
| | | |||||
* | | Make lzma.{encode,decode}_filter_properties private. | Nadeem Vawda | 2012-06-21 | 5 | -63/+31 |
| | | | | | | | | | | | | | | | | 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. | ||||
* | | Merge /features/pep397 changes | Brian Curtin | 2012-06-21 | 9 | -6/+1880 |
|\ \ | |||||
| * \ | branch merge | Brian Curtin | 2012-06-21 | 1 | -23/+2 |
| |\ \ | |||||
| | * | | Remove the original license, as this was contributed under Vinay Sajip's ↵ | Martin v. Löwis | 2012-06-21 | 2 | -46/+4 |
| | | | | | | | | | | | | | | | | agreement. | ||||
| * | | | Remove associator project - it's not needed | Brian Curtin | 2012-06-21 | 6 | -2426/+0 |
| |/ / | |||||
| * | | Build and bundle the 32-bit launcher in all configurations. | Martin v. Löwis | 2012-06-21 | 2 | -10/+11 |
| | | | |||||
| * | | Fix UNICODE glitch. | Martin v. Löwis | 2012-06-21 | 1 | -2/+2 |
| | | | |||||
| * | | Fix off-by-one error. | Martin v. Löwis | 2012-06-21 | 1 | -1/+1 |
| | | | |||||
| * | | Package the launcher. | Martin v. Löwis | 2012-06-21 | 1 | -6/+30 |
| | | | |||||
| * | | Use GetEnvironmentVariableW instead of _wgetenv to silence VC warnings. | Martin v. Löwis | 2012-06-21 | 1 | -10/+19 |
| | | | |||||
| * | | Add version resource. | Martin v. Löwis | 2012-06-21 | 2 | -2/+55 |
| | | | |||||
| * | | Add associator | Brian Curtin | 2012-06-21 | 6 | -0/+2438 |
| | | | |||||
| * | | Add pywlauncher project | Brian Curtin | 2012-06-20 | 2 | -0/+192 |
| | | | |||||
| * | | Add the pyw launcher | Brian Curtin | 2012-06-20 | 1 | -0/+16 |
| | | | |||||
| * | | Get 64-bit building | Brian Curtin | 2012-06-20 | 2 | -3/+73 |
| | | | |||||
| * | | Support 32-bit release building: | Brian Curtin | 2012-06-20 | 1 | -1/+10 |
| | | | |||||
| * | | Initial changes to get the py launcher building | Brian Curtin | 2012-06-20 | 3 | -0/+129 |
| | | | |||||
| * | | Add launcher source and resources | Brian Curtin | 2012-06-20 | 3 | -0/+1380 |
| | | | |||||
* | | | #10053: Don't close FDs when FileIO.__init__ fails | Hynek Schlawack | 2012-06-21 | 3 | -6/+20 |
|\ \ \ | | |/ | |/| | | | | Loosely based on the work by Hirokazu Yamamoto. | ||||
| * | | #10053: Don't close FDs when FileIO.__init__ fails | Hynek Schlawack | 2012-06-21 | 3 | -6/+19 |
| | | | | | | | | | | | | Loosely based on the work by Hirokazu Yamamoto. | ||||
* | | | Make private function static (from `make smelly`) | Antoine Pitrou | 2012-06-21 | 1 | -1/+1 |
| | | |