- 24 Şub, 2016 2 kayıt (commit)
-
-
Ned Deily yazdı
As of Xcode 7, SDKs for Apple platforms now include textual-format stub libraries whose file names have a .tbd extension rather than the standard OS X .dylib extension. The Apple compiler tool chain handles these stub libraries transparently and the installed system shared libraries are still .dylibs. However, the new stub libraries cause problems for third-party programs that support building with Apple SDKs and make build-time decisions based on the presence or paths of system-supplied shared libraries in the SDK. In particular, building Python itself with an SDK fails to find system-supplied libraries during setup.py's build of standard library extension modules. The solution is to have find_library_file() in Distutils search for .tbd files, along with the existing types (.a, .so, and .dylib). Patch by Tim Smith.
-
Martin Panter yazdı
-
- 23 Şub, 2016 3 kayıt (commit)
-
-
Martin Panter yazdı
* There are only two base-64 alphabets defined by the RFCs, not three * Due to the internal translation, plus (+) and slash (/) are never discarded * standard_ and urlsafe_b64decode() discard characters as well
-
Ned Deily yazdı
current versions of OpenBSD and NetBSD. Patch by A. Jesse Jiryu Davis.
-
Ned Deily yazdı
installing IDLE 2.7 on OS X: default configuration settings are no longer installed from OS X specific copies.
-
- 22 Şub, 2016 3 kayıt (commit)
-
-
Zachary Ware yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
* httplib.HTTP (deprecated and does not work) → HTTPConnection * Server (deprecated) → ServerProxy
-
- 20 Şub, 2016 1 kayıt (commit)
-
-
Vinay Sajip yazdı
-
- 19 Şub, 2016 4 kayıt (commit)
-
-
Martin Panter yazdı
* Make it more obvious gettarinfo() is based on stat(), and that non-ordinary files may need special care * Filename taken from fileobj.name; suggest dummy arcname as a workaround * Indicate TarInfo may be used directly, not just via gettarinfo()
-
Georg Brandl yazdı
-
Martin Panter yazdı
* Add headings for each concrete and mix-in class and list methods and attributes under them * Fix class and method cross references * Changed RequestHandler to BaseRequestHandler and added class heading * Pull out Stream/DatagramRequestHandler definitions * Reordered the request handler setup(), handle(), finish() methods * Document constructor parameters for the server classes
-
Martin Panter yazdı
-
- 18 Şub, 2016 3 kayıt (commit)
-
-
Martin Panter yazdı
Based on patch by Aviv Palivoda.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
Patch from Chi Hsuan Yen.
-
- 15 Şub, 2016 2 kayıt (commit)
- 12 Şub, 2016 1 kayıt (commit)
-
-
Charles-François Natali yazdı
Linux PID namespaces enabled.
-
- 10 Şub, 2016 4 kayıt (commit)
-
-
Georg Brandl yazdı
-
Serhiy Storchaka yazdı
imported module with the empty one.
-
Martin Panter yazdı
The original form is incorrect grammar and feels awkward, even though the meaning is clear.
-
Martin Panter yazdı
-
- 08 Şub, 2016 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Gregory P. Smith yazdı
not have a math vocabulary.
-
Steve Dower yazdı
-
- 07 Şub, 2016 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Fixed the documented about buffer overflow error for "es#" and "et#" format units.
-
Benjamin Peterson yazdı
-
- 08 Şub, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
* There was a link pointing to the section on the string.Formatter class (and multiple links in Python 3), when the section on the common format string syntax is probably more appropriate * Fix references to various format() functions and methods * Nested replacement fields may contain conversions and format specifiers, and this is tested in Python 3; see Issue #19729 for instance
-
- 06 Şub, 2016 1 kayıt (commit)
-
-
Senthil Kumaran yazdı
-
- 05 Şub, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 14 Kas, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 04 Şub, 2016 2 kayıt (commit)
-
-
Martin Panter yazdı
Based on patches by Brian Brazil and Daniel Rocco.
-
Zachary Ware yazdı
Reported by Denis Akhiyarov on docs@
-
- 02 Şub, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Fixed a crash when unpickle the functools.partial object with wrong state. Fixed a leak in failed functools.partial constructor. "args" and "keywords" attributes of functools.partial have now always types tuple and dict correspondingly.
-
- 03 Şub, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Based on patch by Aviv Palivoda.
-
- 01 Şub, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Test test_wrong_cert() runs a server that rejects the client's certificate, so ECONNRESET is reasonable in addition to SSLError. On the other hand, the other three tests don't even need to run a server because they are just testing the parsing of invalid certificate files. This should fix intermittent failures on Windows where ECONNRESET was not being caught.
-
- 30 Ock, 2016 2 kayıt (commit)
-
-
Zachary Ware yazdı
-
Martin Panter yazdı
Testing for a non-existing certificate file is already done in test_errors(). The wrongcert.pem test was originally testing behaviour with a mismatched certificate.
-
- 29 Ock, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Also add some more tests. Based on patch by Sye van der Veen.
-