- 23 Jun, 2012 13 commits
-
-
Brian Curtin authored
-
Brian Curtin authored
-
Larry Hastings authored
-
Brian Curtin authored
-
Brian Curtin authored
-
Alexander Belopolsky authored
-
Alexander Belopolsky authored
-
Alexander Belopolsky authored
-
Jesus Cea authored
-
Jesus Cea authored
-
Antoine Pitrou authored
-
Larry Hastings authored
-
Larry Hastings authored
-
- 22 Jun, 2012 27 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
-