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