summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | | * Issue #25940: Use self-signed.pythontest.net in SSL testsMartin Panter2016-01-146-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_httplibGeorg Brandl2014-11-052-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.com2016-01-141-1/+1
| | | |
* | | | #26001: mention in the tutorial that files in binary mode expect bytes, not str.Ezio Melotti2016-01-121-7/+8
| | | |
* | | | #19006: fix wording in unittest docs.Ezio Melotti2016-01-121-3/+4
| | | |
* | | | Issue #25348: Add --pgo and --pgo-job flags to PCbuild\build.batZachary Ware2016-01-123-51/+61
| | | |
* | | | Issue #25486: Drop "removed in 3.6" wording from inspect.getargspec docs.Yury Selivanov2016-01-121-2/+1
| | | |
* | | | #25517: fix regex in the regex howto. Patch by Elena Oat.Ezio Melotti2016-01-111-3/+4
| | | |
* | | | #25991: fix readline example to limit history size. Patch by Daniel Dye.Ezio Melotti2016-01-111-0/+4
| | | |
* | | | Merge heads.Barry Warsaw2016-01-112-37/+11
|\ \ \ \
| * | | | Comment out some tests that won't pass now that we've reverted theBarry Warsaw2016-01-112-37/+11
| | | | | | | | | | | | | | | | | | | | | | | | | picklability regression. Also, as per further discussion, remove the regressing code.
* | | | | - Issue #24705: Fix sysconfig._parse_makefile not expanding ${} varsdoko@ubuntu.com2016-01-112-1/+9
|/ / / / | | | | | | | | | | | | appearing before $() vars.
* | | | Issue #22995: [UPDATE] Comment out the one of the pickleability tests inBarry Warsaw2016-01-112-0/+12
| | | | | | | | | | | | | | | | _PyObject_GetState() due to regressions observed in Cython-based projects.
* | | | Merge 3.4 (Issue #26050)Yury Selivanov2016-01-113-39/+317
|\ \ \ \ | |/ / /
| * | | Issue #26050: Add asyncio.StreamReader.readuntil() method.Yury Selivanov2016-01-113-39/+317
| | | | | | | | | | | | | | | | Patch by Марк Коренберг.
* | | | Fix versionadded to use 3.5.1 only for 3.5 branchAndrew Svetlov2016-01-111-1/+1
| | | |
* | | | merge 3.4Andrew Svetlov2016-01-111-48/+64
|\ \ \ \ | |/ / /
| * | | Document asyncio.timeout()Andrew Svetlov2016-01-111-46/+63
| | | |
* | | | merge 3.4Andrew Svetlov2016-01-111-1/+1
|\ \ \ \ | |/ / /
| * | | Sync with asyncioAndrew Svetlov2016-01-111-1/+1
| | | |
* | | | Add missing Misc/NEWS updateAndrew Svetlov2016-01-111-0/+5
| | | |
* | | | merge 3.4Andrew Svetlov2016-01-113-7/+230
|\ \ \ \ | |/ / /
| * | | Sync with asyncio repoAndrew Svetlov2016-01-114-7/+235
| | | |
* | | | Issue #26070: py.exe launcher fails to find in-place built binaries from ↵Mark Hammond2016-01-111-0/+3
| | | | | | | | | | | | | | | | earlier Python versions.
* | | | merge 3.4 (#26066)Benjamin Peterson2016-01-101-11/+0
|\ \ \ \ | |/ / /
| * | | delete old crypto prose (closes #26066)Benjamin Peterson2016-01-101-11/+0
| | | |
* | | | Issue23675 - A tiny clarification in the MRO glossary term.Senthil Kumaran2016-01-101-1/+2
| | | |
* | | | Issue #26029: Finish correction.Terry Jan Reedy2016-01-091-1/+1
| | | |
* | | | #24789: fix docstring of ctypes.create_string_buffer. Patch by Matheus ↵Ezio Melotti2016-01-091-1/+1
| | | | | | | | | | | | | | | | Vieira Portela.
* | | | Issue #26029: Remove extraneous word. Patch by Upendra Kumar.Terry Jan Reedy2016-01-092-1/+2
| | | |
* | | | Issue #22138: Fix mock.patch behavior when patching descriptors. RestoreSenthil Kumaran2016-01-093-1/+33
| | | | | | | | | | | | | | | | | | | | | | | | original values after patching. Patch contributed by Sean McCully.
* | | | Issue20969 - Set the Epub Author and Epub Publisher in Python docs.Senthil Kumaran2016-01-081-0/+5
| | | |
* | | | merge 3.4 (#26046)Benjamin Peterson2016-01-081-1/+1
|\ \ \ \ | |/ / /
| * | | fix typo in unittest docs (closes #26046)Benjamin Peterson2016-01-081-1/+1
| | | | | | | | | | | | | | | | Patch from Upendra Kumar.
* | | | enable SSL_MODE_RELEASE_BUFFERSBenjamin Peterson2016-01-082-0/+20
| | | | | | | | | | | | | | | | Patch by Cory Benfield.
* | | | Hopeful fix for test_rglob_common on Windows without symlinks. (Merge 3.4->3.5)Guido van Rossum2016-01-071-2/+5
|\ \ \ \ | |/ / /
| * | | Hopeful fix for test_rglob_common on Windows without symlinks.Guido van Rossum2016-01-071-2/+5
| | | |
* | | | Add another try/except PermissionError to avoid depending on listdir order. ↵Guido van Rossum2016-01-072-13/+16
|\ \ \ \ | |/ / / | | | | | | | | Fix issues #24120 and #26012. (Merge 3.4->3.5)
| * | | Add another try/except PermissionError to avoid depending on listdir order. ↵Guido van Rossum2016-01-072-13/+16
| | | | | | | | | | | | | | | | Fix issues #24120 and #26012.
* | | | Fix typo in docstring of multiprocessing.spawn.spawn_main()Berker Peksag2016-01-071-1/+1
| | | |
* | | | Issue #5501: Clarify that invoking freeze_support() on non-Windows platforms ↵Berker Peksag2016-01-071-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | has no effect Patch by Davin Potts and Camilla Montonen.
* | | | merge from 3.4Senthil Kumaran2016-01-071-0/+5
|\ \ \ \ | |/ / / | | | | | | | | Issue16544 - Add a link to an external documentation resource in ast module docs.
| * | | Issue16544 - Add a link to an external documentation resource in ast module ↵Senthil Kumaran2016-01-071-0/+5
| | | | | | | | | | | | | | | | docs.
* | | | Cross-reference os.DirEntry and pathlib.Path for issue #22570.Guido van Rossum2016-01-062-0/+10
| | | |
* | | | Add versionadded (3.4.5) to docs for issue #22570. (Merge 3.4->3.5)Guido van Rossum2016-01-061-0/+1
|\ \ \ \ | |/ / /
| * | | Add versionadded (3.4.5) to docs for issue #22570.Guido van Rossum2016-01-061-0/+1
| | | |
* | | | Docs for issue #22570. (Merge 3.4->3.5)Guido van Rossum2016-01-061-0/+17
|\ \ \ \ | |/ / /
| * | | Docs for issue #22570.Guido van Rossum2016-01-061-0/+17
| | | |
* | | | Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.4->3.5)Guido van Rossum2016-01-063-0/+40
|\ \ \ \ | |/ / /
| * | | Issue #22570: Add 'path' attribute to pathlib.Path objects.Guido van Rossum2016-01-063-0/+40
| | | |