- 19 Şub, 2016 2 kayıt (commit)
-
-
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.
-
- 28 Ock, 2016 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
functions: "s", "s*", "s#", "t#", "z", "z*", "z#", "w", "w*", "w#", "u", "u#", "es", "et", "es#", "et#" and "c".
-
- 27 Ock, 2016 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Augment htest to include all major IOBinding functions.
-
- 25 Ock, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
Reported by Mike Scalora on docs@p.o.
-
- 23 Ock, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #25907: Use {% trans %} tags in HTML templates to ease the translation of the documentation. The tag comes from Jinja templating system, used by Sphinx. Patch written by Julien Palard.
-
- 22 Ock, 2016 4 kayıt (commit)
-
-
Gregory P. Smith yazdı
This was already done in the 3.5 branch; this just does the same in the 2.7 branch.
-
Victor Stinner yazdı
Issue #25843: When compiling code, don't merge constants if they are equal but have a different types. For example, "f1, f2 = lambda: 1, lambda: 1.0" is now correctly compiled to two different functions: f1() returns 1 (int) and f2() returns 1.0 (int), even if 1 and 1.0 are equal. Add a new _PyCode_ConstantKey() private function.
-
Benjamin Peterson yazdı
-
Donald Stufft yazdı
-