- 30 Jan, 2016 5 commits
-
-
Berker Peksag authored
-
Berker Peksag authored
-
Berker Peksag authored
invalid pattern. Patch by Thomas Nyberg.
-
Berker Peksag authored
-
Berker Peksag authored
* Update description of the --system-site-packages option * Show --copies option in the usage
-
- 31 Jan, 2016 1 commit
-
-
Martin Panter authored
Based on patch by Hagen Fürstenau and Daniel Urban.
-
- 30 Jan, 2016 2 commits
-
-
Zachary Ware authored
-
Martin Panter authored
Testing for a non-existing certificate file is already done in test_errors(). Copy wrongcert.pem from Python 2 and use it to test the behaviour with a mismatched certificate.
-
- 28 Jan, 2016 8 commits
-
-
Serhiy Storchaka authored
non-atomic attributes.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
of PyArg_Parse*() functions.
-
Victor Stinner authored
* Issue #25234: Skip test_eintr.test_open() under OS X to avoid hanging * Issue #25868: Try to make test_eintr.test_sigwaitinfo() more reliable especially on slow buildbots. Use a pipe to synchronize the parent and the child processes.
-
Berker Peksag authored
-
Victor Stinner authored
Issue #26227: On Windows, getnameinfo(), gethostbyaddr() and gethostbyname_ex() functions of the socket module now decode the hostname from the ANSI code page rather than UTF-8.
-
Berker Peksag authored
-
- 29 Jan, 2016 1 commit
-
-
Martin Panter authored
Also add some more tests. Based on patch by Sye van der Veen.
-
- 28 Jan, 2016 3 commits
-
-
Berker Peksag authored
-
Berker Peksag authored
Most of the docs has already been updated in c3c188a0325a.
-
Berker Peksag authored
Patch by Raphael Das Gupta.
-
- 29 Jan, 2016 1 commit
-
-
Martin Panter authored
-
- 27 Jan, 2016 3 commits
-
-
Terry Jan Reedy authored
Augment htest to include all major IOBinding functions.
-
Victor Stinner authored
Issue #26217: resize_compact() must set wstr_length to 0 after freeing the wstr string. Otherwise, an assertion fails in _PyUnicode_CheckConsistency().
-
Raymond Hettinger authored
-
- 26 Jan, 2016 1 commit
-
-
Senthil Kumaran authored
-
- 22 Jan, 2016 8 commits
-
-
Brett Cannon authored
-
Victor Stinner authored
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.
-
Victor Stinner authored
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 authored
-
Benjamin Peterson authored
-
Senthil Kumaran authored
-
Donald Stufft authored
-
Donald Stufft authored
-
- 21 Jan, 2016 7 commits
-
-
Berker Peksag authored
A single call to Pool.apply_async() will create only one process. To use all of the pool's processes, it should be invoked multiple times: with Pool(processes=4) as pool: results = [pool.apply_async(func, ()) for i in range(4)] Patch by Davin Potts.
-
Senthil Kumaran authored
PyMapping_Values in Include/abstract.h and Doc/c-api/mapping.rst. Patch contributed by Sonali Gupta.
-
Victor Stinner authored
This change helps to ignore text of PSF, BEOPEN.com and CNRI licenses when translating the documentation. Patch written by Julien Palard who is translating Python 3.5 doc to french. Text of other licenses already used preformatted format.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-