summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | merge from 3.2. Minor code style improvements in http.server suggested in ↵Senthil Kumaran2011-12-231-6/+3
|\ \ \ | |/ / | | | | | | Issue13294.
| * | Minor code style improvements in http.server suggested in Issue13294.Senthil Kumaran2011-12-231-6/+3
| | |
* | | merge from 3.2. News update.Senthil Kumaran2011-12-231-0/+2
|\ \ \ | |/ /
| * | News entry for Issue12798Senthil Kumaran2011-12-231-0/+2
| | |
* | | Merge changes from 3.2Senthil Kumaran2011-12-231-43/+59
|\ \ \ | |/ / | | | | | | | | | | | | Issue12798 - Update mimetypes documentation. Correct the doc section where common_types was mentioned under MimeTypes class, move it to helper function category and other documentation improvements contributed by Sandro Tosi.
| * | Issue12798 - Update mimetypes documentation. Correct the doc section whereSenthil Kumaran2011-12-231-43/+59
| | | | | | | | | | | | | | | common_types was mentioned under MimeTypes class, move it to helper function category and other documentation improvements contributed by Sandro Tosi.
* | | Forgot the data file for Diffie-Hellman tests.Antoine Pitrou2011-12-221-0/+9
| | |
* | | Issue #13626: Add support for SSL Diffie-Hellman key exchange, through theAntoine Pitrou2011-12-227-6/+103
| | | | | | | | | | | | SSLContext.load_dh_params() method and the ssl.OP_SINGLE_DH_USE option.
* | | Merge with 3.2.Ross Lagerwall2011-12-220-0/+0
|\ \ \ | |/ /
| * | Don't redefine _GNU_SOURCE if it's already defined.Ross Lagerwall2011-12-221-2/+2
| | |
* | | Merge with 3.2 for #11006.Ross Lagerwall2011-12-222-6/+2
|\ \ \ | |/ /
| * | Issue #11006: Don't issue low level warning in subprocess when pipe2() fails.Ross Lagerwall2011-12-222-6/+2
| | |
* | | fix PyCompactUnicodeObject doc (test)Victor Stinner2011-12-221-1/+1
| | |
* | | MergeMichael Foord2011-12-223-4/+25
|\ \ \ | |/ /
| * | Metaclasses with metaclasses with a __dict__ descriptor can no longer ↵Michael Foord2011-12-223-4/+25
| | | | | | | | | | | | | | | | | | trigger code execution with inspect.getattr_static. Closes issue 11829.
* | | merge headsBenjamin Peterson2011-12-2118-171/+371
|\ \ \
| * \ \ Use context managers in test_ssl to simplify test writing.Antoine Pitrou2011-12-211-83/+43
| |\ \ \ | | |/ /
| | * | Use context managers in test_ssl to simplify test writing.Antoine Pitrou2011-12-211-68/+35
| | | |
| * | | Issue #13645: fix test_import failure when run immediately after test_coding.Antoine Pitrou2011-12-211-1/+2
| |\ \ \ | | |/ /
| | * | Issue #13645: fix test_import failure when run immediately after test_coding.Antoine Pitrou2011-12-211-1/+2
| | | |
| * | | Docs and News update for Issue13620. Chrome support in webbrowser.pySenthil Kumaran2011-12-212-41/+52
| | | |
| * | | Issue 13620 - Support chrome browser in webbrowser.py module.Senthil Kumaran2011-12-211-0/+17
| | | |
| * | | Issue #13597: Fix the documentation of the "-u" command-line option, and ↵Antoine Pitrou2011-12-212-4/+9
| |\ \ \ | | |/ / | | | | | | | | wording of "What's new in Python 3.0" about standard streams.
| | * | Issue #13597: Fix the documentation of the "-u" command-line option, and ↵Antoine Pitrou2011-12-212-4/+9
| | | | | | | | | | | | | | | | wording of "What's new in Python 3.0" about standard streams.
| * | | Issue #12708: Add starmap() and starmap_async() methods (similar to ↵Antoine Pitrou2011-12-216-3/+72
| | | | | | | | | | | | | | | | | | | | | | | | itertools.starmap()) to multiprocessing.Pool. Patch by Hynek Schlawack.
| * | | Issue #1785: Fix inspect and pydoc with misbehaving descriptors.Antoine Pitrou2011-12-214-38/+151
| |\ \ \ | | |/ / | | | | | | | | Also fixes issue #13581: `help(type)` wouldn't display anything.
| | * | Issue #1785: Fix inspect and pydoc with misbehaving descriptors.Antoine Pitrou2011-12-214-38/+151
| | | | | | | | | | | | | | | | Also fixes issue #13581: `help(type)` wouldn't display anything.
| * | | Fix ssl module compilation if ECDH support was disabled in the OpenSSL build.Antoine Pitrou2011-12-214-1/+25
| | | | | | | | | | | | | | | | (followup to issue #13627)
* | | | 4 space indentationBenjamin Peterson2011-12-201-13/+13
| | | |
* | | | fix spacing around switch statementsBenjamin Peterson2011-12-201-23/+22
|/ / /
* | | merge 3.2Benjamin Peterson2011-12-201-1/+5
|\ \ \ | |/ /
| * | fix possible if unlikely leakBenjamin Peterson2011-12-201-1/+5
| | |
* | | merge 3.2Benjamin Peterson2011-12-201-2/+2
|\ \ \ | |/ /
| * | note the blinding speed of these functionsBenjamin Peterson2011-12-201-2/+2
| | |
* | | MergeAntoine Pitrou2011-12-201-11/+8
|\ \ \
| * \ \ Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't reallyCharles-François Natali2011-12-201-11/+8
| |\ \ \ | | |/ / | | | | | | | | support multiprocessing.Event.
| | * | Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't reallyCharles-François Natali2011-12-201-11/+8
| | | | | | | | | | | | | | | | support multiprocessing.Event.
* | | | Issue #13637: "a2b" functions in the binascii module now accept ASCII-only ↵Antoine Pitrou2011-12-204-11/+85
|/ / / | | | | | | | | | unicode strings.
* | | Fix for buggy testAntoine Pitrou2011-12-201-0/+1
| | |
* | | Issue #13634: Add support for querying and disabling SSL compression.Antoine Pitrou2011-12-206-0/+83
| | |
* | | merge 3.2Benjamin Peterson2011-12-191-5/+5
|\ \ \ | |/ /
| * | don't mention implementation detailBenjamin Peterson2011-12-191-5/+5
| | |
* | | backout 7876cd49300d: Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enumVictor Stinner2011-12-191-4/+3
| | |
* | | (bug #8684) fix 'fedora without thread buildbot' as per ↵Giampaolo Rodola'2011-12-191-1/+4
| | | | | | | | | | | | http://bugs.python.org/issue8684
* | | _Py_fopen now allows bytes filenames under non-Windows platforms.Antoine Pitrou2011-12-191-2/+2
| | |
* | | Issue #13627: Add support for SSL Elliptic Curve-based Diffie-HellmanAntoine Pitrou2011-12-196-1/+76
| | | | | | | | | | | | | | | key exchange, through the SSLContext.set_ecdh_curve() method and the ssl.OP_SINGLE_ECDH_USE option.
* | | Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton.Antoine Pitrou2011-12-192-0/+66
|\ \ \ | |/ / | | | | | | Patch by Philipp Hagemeister.
| * | Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton.Antoine Pitrou2011-12-192-0/+66
| | | | | | | | | | | | Patch by Philipp Hagemeister.
* | | Issue #13453: Try to increase some socket timeouts to make some buildbots stopCharles-François Natali2011-12-191-1/+1
|\ \ \ | |/ / | | | | | | failing.
| * | Issue #13453: Try to increase some socket timeouts to make some buildbots stopCharles-François Natali2011-12-191-1/+1
| | | | | | | | | | | | failing.