- 22 Jun, 2012 27 commits
-
-
Brian Curtin authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Antoine Pitrou authored
-
Alexander Belopolsky authored
-
Antoine Pitrou authored
-
Alexander Belopolsky authored
-
Larry Hastings authored
Mostly documentation changes; the code changes are clarifications, not semantic changes.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
Issue #14837: SSL errors now have `library` and `reason` attributes 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
-
David Malcolm authored
-
Kristjan Valur Jonsson authored
not contested, similar to what _thread.RLock already has.
-
Alexander Belopolsky authored
-
Alexander Belopolsky authored
-
Alexander Belopolsky authored
-
Alexander Belopolsky authored
-
Jesus Cea authored
-
Alexander Belopolsky authored
timezone instance corresponding to the system local timezone when called with no arguments.
-
Alexander Belopolsky authored
timezone instance corresponding to the system local timezone when called with no arguments.
-
Larry Hastings authored
for "parity" between PyArg_ParseTuple() and the Python/getargs.c static function skipitem() for all possible "format units".
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
Add version guard for Py_LIMITED_API additions. Issue #15081: Document PyState_FindModule. Patch by Robin Schreiber.
-
Hynek Schlawack authored
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.
-
Alexander Belopolsky authored
mktime() when timezone offest is supplied.
-
Alexander Belopolsky authored
mktime() when timezone offest is supplied.
-
- 21 Jun, 2012 13 commits
-
-
Nadeem Vawda authored
Original patch by Jim Jewett; see issue 14684.
-
Nadeem Vawda authored
-
Nadeem Vawda authored
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.
-
Brian Curtin authored
-
Brian Curtin authored
-
Brian Curtin authored
-
Hynek Schlawack authored
Loosely based on the work by Hirokazu Yamamoto.
-
Hynek Schlawack authored
Loosely based on the work by Hirokazu Yamamoto.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-