Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Issue #14771: Redirect GDB's stdin to avoid messing the terminal settings | Martin Panter | 2016-01-16 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | Otherwise, GDB seems to affect the terminal's foreground process group, interfering with test_ioctl, which does not expect the foreground process to change during the test. This change also solves the problem of the tests being stopped in the shell if test_gdb is run twice in parallel. | |||||
* | | Issue #26127: Fix links in tokenize documentation; patch by Silent Ghost | Martin Panter | 2016-01-16 | 1 | -7/+7 | |
| | | ||||||
* | | Make the error message regex more lenient so that it matches both | Gregory P. Smith | 2016-01-16 | 1 | -2/+2 | |
|\ \ | |/ | | | | | | | "certificate verify failed " and "CERTIFICATE_VERIFY_FAILED " as some SSL libraries use different text than OpenSSL. | |||||
| * | Make the error message regex more lenient so that it matches both | Gregory P. Smith | 2016-01-16 | 1 | -2/+2 | |
| | | | | | | | | | | "certificate verify failed " and "CERTIFICATE_VERIFY_FAILED " as some SSL libraries use different text than OpenSSL. | |||||
* | | Issue #17633: Improve support for namespace packages with zipimport. | Brett Cannon | 2016-01-15 | 3 | -48/+250 | |
| | | | | | | | | | | | | | | | | | | Previously zipimport mistakenly limited namespace support to only the top-level of the zipfile when it should have supported an arbitrary depth. Thanks to Phil Connel for the bug report and initial patch and Mike Romberg for the final patch. | |||||
* | | Add some "used with permission" mentions where external resources are ↵ | Brett Cannon | 2016-01-15 | 3 | -1/+4 | |
| | | | | | | | | | | | | referenced. Permission was validated prior to adding these markings. | |||||
* | | Issue #26114: Remove a reference to 'Numerical Recipes'. | Brett Cannon | 2016-01-15 | 1 | -3/+2 | |
| | | | | | | | | | | | | While no copyright violation occurred, the license which 'Numerical Recipes' operates under is not amenable to Python, so to prevent confusion it's easier to simply remove its mention. | |||||
* | | Issue #25940: Merge ETIMEDOUT fix from 3.4 into 3.5 | Martin Panter | 2016-01-15 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Issue #25940: Merge ETIMEDOUT fix from 3.3 into 3.4 | Martin Panter | 2016-01-15 | 1 | -1/+1 | |
| |\ | ||||||
| | * | Issue #25940: Merge ETIMEDOUT fix from 3.2 into 3.3 | Martin Panter | 2016-01-15 | 1 | -1/+1 | |
| | |\ | ||||||
| | | * | Issue #25940: On Windows, connecting to port 444 returns ETIMEDOUT | Martin Panter | 2016-01-15 | 1 | -1/+3 | |
| | | | | ||||||
* | | | | Issue #25940: Update new SSL tests for self-signed.pythontest.net | Martin Panter | 2016-01-14 | 1 | -13/+14 | |
| | | | | | | | | | | | | | | | | | | | | Removed SSL_ERROR_SYSCALL checking from ssl_io_loop() so that the loop can terminate when unwrap() raises that error. | |||||
* | | | | Issue #25940: Merge self-signed.pythontest.net testing from 3.4 into 3.5 | Martin Panter | 2016-01-14 | 6 | -98/+97 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Issue #25940: Update new SSL tests for self-signed.pythontest.net | Martin Panter | 2016-01-14 | 1 | -12/+12 | |
| | | | | ||||||
| * | | | Issue #25940: Merge self-signed.pythontest.net testing from 3.3 into 3.4 | Martin Panter | 2016-01-14 | 6 | -86/+88 | |
| |\ \ \ | | |/ / | ||||||
| | * | | Issue #25940: Merge self-signed.pythontest.net testing from 3.2 into 3.3 | Martin Panter | 2016-01-14 | 7 | -89/+111 | |
| | |\ \ | | | |/ | ||||||
| | | * | Issue #25940: Use self-signed.pythontest.net in SSL tests | Martin Panter | 2016-01-14 | 6 | -96/+97 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is instead of svn.python.org, whose certificate recently expired, and whose new certificate uses a different root certificate. The certificate used at the pythontest server was modifed to set the "basic constraints" CA flag. This flag seems to be required for test_get_ca_certs_ capath() to work (in Python 3.4+). Added the new self-signed certificate to capath with the following commands: cp Lib/test/{selfsigned_pythontestdotnet.pem,capath/} c_rehash -v Lib/test/capath/ c_rehash -v -old Lib/test/capath/ # Note the generated file names cp Lib/test/capath/{selfsigned_pythontestdotnet.pem,0e4015b9.0} mv Lib/test/capath/{selfsigned_pythontestdotnet.pem,ce7b8643.0} The new server responds with "No route to host" when connecting to port 444. | |||||
| | | * | Issue #25940: Backport self-signed.pythontest.net testing for test_httplib | Georg Brandl | 2014-11-05 | 2 | -7/+24 | |
| | | | | | | | | | | | | | | | | | | | | The svn.python.org server recently changed root certificate, causing the test to fail. This backports revision 4985375db40f. | |||||
* | | | | dictobject.c(dict_sizeof): Make it static again. | doko@ubuntu.com | 2016-01-14 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | #26001: mention in the tutorial that files in binary mode expect bytes, not str. | Ezio Melotti | 2016-01-12 | 1 | -7/+8 | |
| | | | | ||||||
* | | | | #19006: fix wording in unittest docs. | Ezio Melotti | 2016-01-12 | 1 | -3/+4 | |
| | | | | ||||||
* | | | | Issue #25348: Add --pgo and --pgo-job flags to PCbuild\build.bat | Zachary Ware | 2016-01-12 | 3 | -51/+61 | |
| | | | | ||||||
* | | | | Issue #25486: Drop "removed in 3.6" wording from inspect.getargspec docs. | Yury Selivanov | 2016-01-12 | 1 | -2/+1 | |
| | | | | ||||||
* | | | | #25517: fix regex in the regex howto. Patch by Elena Oat. | Ezio Melotti | 2016-01-11 | 1 | -3/+4 | |
| | | | | ||||||
* | | | | #25991: fix readline example to limit history size. Patch by Daniel Dye. | Ezio Melotti | 2016-01-11 | 1 | -0/+4 | |
| | | | | ||||||
* | | | | Merge heads. | Barry Warsaw | 2016-01-11 | 2 | -37/+11 | |
|\ \ \ \ | ||||||
| * | | | | Comment out some tests that won't pass now that we've reverted the | Barry Warsaw | 2016-01-11 | 2 | -37/+11 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | picklability regression. Also, as per further discussion, remove the regressing code. | |||||
* | | | | | - Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars | doko@ubuntu.com | 2016-01-11 | 2 | -1/+9 | |
|/ / / / | | | | | | | | | | | | | appearing before $() vars. | |||||
* | | | | Issue #22995: [UPDATE] Comment out the one of the pickleability tests in | Barry Warsaw | 2016-01-11 | 2 | -0/+12 | |
| | | | | | | | | | | | | | | | | _PyObject_GetState() due to regressions observed in Cython-based projects. | |||||
* | | | | Merge 3.4 (Issue #26050) | Yury Selivanov | 2016-01-11 | 3 | -39/+317 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Issue #26050: Add asyncio.StreamReader.readuntil() method. | Yury Selivanov | 2016-01-11 | 3 | -39/+317 | |
| | | | | | | | | | | | | | | | | Patch by Марк Коренберг. | |||||
* | | | | Fix versionadded to use 3.5.1 only for 3.5 branch | Andrew Svetlov | 2016-01-11 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | merge 3.4 | Andrew Svetlov | 2016-01-11 | 1 | -48/+64 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Document asyncio.timeout() | Andrew Svetlov | 2016-01-11 | 1 | -46/+63 | |
| | | | | ||||||
* | | | | merge 3.4 | Andrew Svetlov | 2016-01-11 | 1 | -1/+1 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Sync with asyncio | Andrew Svetlov | 2016-01-11 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Add missing Misc/NEWS update | Andrew Svetlov | 2016-01-11 | 1 | -0/+5 | |
| | | | | ||||||
* | | | | merge 3.4 | Andrew Svetlov | 2016-01-11 | 3 | -7/+230 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Sync with asyncio repo | Andrew Svetlov | 2016-01-11 | 4 | -7/+235 | |
| | | | | ||||||
* | | | | Issue #26070: py.exe launcher fails to find in-place built binaries from ↵ | Mark Hammond | 2016-01-11 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | earlier Python versions. | |||||
* | | | | merge 3.4 (#26066) | Benjamin Peterson | 2016-01-10 | 1 | -11/+0 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | delete old crypto prose (closes #26066) | Benjamin Peterson | 2016-01-10 | 1 | -11/+0 | |
| | | | | ||||||
* | | | | Issue23675 - A tiny clarification in the MRO glossary term. | Senthil Kumaran | 2016-01-10 | 1 | -1/+2 | |
| | | | | ||||||
* | | | | Issue #26029: Finish correction. | Terry Jan Reedy | 2016-01-09 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | #24789: fix docstring of ctypes.create_string_buffer. Patch by Matheus ↵ | Ezio Melotti | 2016-01-09 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | Vieira Portela. | |||||
* | | | | Issue #26029: Remove extraneous word. Patch by Upendra Kumar. | Terry Jan Reedy | 2016-01-09 | 2 | -1/+2 | |
| | | | | ||||||
* | | | | Issue #22138: Fix mock.patch behavior when patching descriptors. Restore | Senthil Kumaran | 2016-01-09 | 3 | -1/+33 | |
| | | | | | | | | | | | | | | | | | | | | | | | | original values after patching. Patch contributed by Sean McCully. | |||||
* | | | | Issue20969 - Set the Epub Author and Epub Publisher in Python docs. | Senthil Kumaran | 2016-01-08 | 1 | -0/+5 | |
| | | | | ||||||
* | | | | merge 3.4 (#26046) | Benjamin Peterson | 2016-01-08 | 1 | -1/+1 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | fix typo in unittest docs (closes #26046) | Benjamin Peterson | 2016-01-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | Patch from Upendra Kumar. |