summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* | 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.
* | (Merge 3.2) Issue #13628: python-gdb.py is now able to retrieve more frames inVictor Stinner2011-12-193-17/+55
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | the Python traceback if Python is optimized. * delay the lookup of the size_t type, it is not available at startup * The second argument of the PyFrameObjectPtr constructor is optional, as done in other constructors * iter_builtins() and iter_globals() methods of PyFrameObjectPtr returns an empty tuple instead of None if Python is optimized * Fix py-bt and py-bt-full to handle correctly "optimized" frames * Frame.get_pyop() tries to get the frame pointer from PyEval_EvalCodeEx() if the pointer is optimized out in PyEval_EvalFrameEx()
| * Issue #13628: python-gdb.py is now able to retrieve more frames in the PythonVictor Stinner2011-12-193-17/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | traceback if Python is optimized. * delay the lookup of the size_t type, it is not available at startup * The second argument of the PyFrameObjectPtr constructor is optional, as done in other constructors * iter_builtins() and iter_globals() methods of PyFrameObjectPtr returns an empty tuple instead of None if Python is optimized * Fix py-bt and py-bt-full to handle correctly "optimized" frames * Frame.get_pyop() tries to get the frame pointer from PyEval_EvalCodeEx() if the pointer is optimized out in PyEval_EvalFrameEx()
* | Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL serversAntoine Pitrou2011-12-195-1/+18
| | | | | | | | | | choose the cipher based on their own preferences, rather than on the client's.
* | Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix aCharles-François Natali2011-12-191-9/+21
|\ \ | |/ | | | | race condition).
| * Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix aCharles-François Natali2011-12-191-9/+21
| | | | | | | | race condition).
* | #13576: merge with 3.2.Ezio Melotti2011-12-192-0/+47
|\ \ | |/
| * #13576: add tests about the handling of (possibly broken) condcoms.Ezio Melotti2011-12-192-0/+47
| |
* | #13387: merge with 3.2.Ezio Melotti2011-12-191-2/+1
|\ \ | |/
| * #13387: rephrase unclear sentence.Ezio Melotti2011-12-191-2/+1
| |
* | Merge 3.2Michael Foord2011-12-183-4/+14
|\ \ | |/
| * Fix inspect.getattr_static to work on modules (again).Michael Foord2011-12-183-4/+14
| | | | | | | | Closes issue 11813.
* | iobench.py: add more info in the headerVictor Stinner2011-12-181-4/+15
| | | | | | | | Write the Python version, Unicode implementation and the platform.
* | (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exceptionVictor Stinner2011-12-182-12/+26
|\ \ | |/
| * Handle correctly _Py_fopen() error: don't replace the exceptionVictor Stinner2011-12-181-3/+5
| |
* | import.c now catchs _Py_stat() exceptionsVictor Stinner2011-12-183-13/+37
| | | | | | | | _Py_stat() now returns -2 if an exception was raised.
* | Followup to #7502: add __hash__ method and tests.Antoine Pitrou2011-12-182-0/+29
|\ \ | |/
| * Followup to #7502: add __hash__ method and tests.Antoine Pitrou2011-12-182-0/+30
| |
| * MergeAntoine Pitrou2011-12-183-12/+23
| |\
* | \ MergeAntoine Pitrou2011-12-183-16/+28
|\ \ \
| * \ \ Merge with 3.2.Georg Brandl2011-12-181-3/+3
| |\ \ \ | | | |/ | | |/|
| | * | Small clarification in docstring of dict.update(): the positional argument ↵Georg Brandl2011-12-181-3/+3
| | | | | | | | | | | | | | | | is not required.
| * | | Issue #13617: Document that the result of the conversion of a Unicode object toVictor Stinner2011-12-182-13/+25
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | wchar*, Py_UNICODE* and bytes may contain embedded null characters/bytes. Patch written by Arnaud Calmettes.
| | * | Issue #13617: Document that the result of the conversion of a Unicode object toVictor Stinner2011-12-182-9/+20
| | | | | | | | | | | | | | | | | | | | | | | | wchar*, Py_UNICODE* and bytes may contain embedded null characters/bytes. Patch written by Arnaud Calmettes.
* | | | Issue #7502: Fix equality comparison for DocTestCase instances.Antoine Pitrou2011-12-184-0/+85
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| Patch by Cédric Krier.
| * | MergeAntoine Pitrou2011-12-182-7/+7
| |\ \ | | |/
| * | Issue #7502: Fix equality comparison for DocTestCase instances.Antoine Pitrou2011-12-184-0/+85
| | | | | | | | | | | | Patch by Cédric Krier.
* | | MergeAntoine Pitrou2011-12-183-9/+10
|\ \ \
| * \ \ Null merge.Charles-François Natali2011-12-180-0/+0
| |\ \ \ | | | |/ | | |/|
| | * | Issue #11870: threading: Properly reinitialize threads internal locks andCharles-François Natali2011-12-182-7/+7
| | |/ | | | | | | | | | condition variables to avoid deadlocks in child processes.
| * | Issue #11870: threading: Properly reinitialize threads internal locks andCharles-François Natali2011-12-182-7/+7
| | | | | | | | | | | | condition variables to avoid deadlocks in child processes.
| * | Issue #8035: urllib: Fix a bug where the client could remain stuck after aCharles-François Natali2011-12-182-2/+3
| |\ \ | | |/ | | | | | | redirection or an error.
| | * Issue #8035: urllib: Fix a bug where the client could remain stuck after aCharles-François Natali2011-12-182-2/+3
| | | | | | | | | | | | redirection or an error.
* | | In the test SSL server, also output the cipher nameAntoine Pitrou2011-12-181-1/+5
|/ /
* | Issue #13624: Write a specialized UTF-8 encoder to allow more optimizationVictor Stinner2011-12-183-150/+212
| | | | | | | | The main bottleneck was the PyUnicode_READ() macro.
* | Null mergeAntoine Pitrou2011-12-180-0/+0
|\ \ | |/
| * Issue #13522: Fix _Py_co_pow() documentationVictor Stinner2011-12-181-1/+1
| | | | | | | | Patch written by Arnaud Calmettes.