- 23 Jun, 2012 4 commits
-
-
Jesus Cea authored
-
Antoine Pitrou authored
-
Larry Hastings authored
-
Larry Hastings authored
-
- 22 Jun, 2012 36 commits
-
-
Larry Hastings authored
Many functions now support "dir_fd" and "follow_symlinks" parameters; some also support accepting an open file descriptor in place of of a path string. Added os.support_* collections as LBYL helpers. Removed many functions only previously seen in 3.3 alpha releases (often starting with "f" or "l", or ending with "at"). Originally suggested by Serhiy Storchaka; implemented by Larry Hastings.
-
Antoine Pitrou authored
-
Stefan Krah authored
-
Larry Hastings authored
Patch by Yury Selivanov.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Brian Curtin authored
-
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.
-