Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't really | Charles-François Natali | 2011-12-20 | 1 | -11/+8 |
|\ | | | | | | | support multiprocessing.Event. | ||||
| * | Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't really | Charles-François Natali | 2011-12-20 | 1 | -11/+8 |
| | | | | | | | | support multiprocessing.Event. | ||||
* | | Fix for buggy test | Antoine Pitrou | 2011-12-20 | 1 | -0/+1 |
| | | |||||
* | | Issue #13634: Add support for querying and disabling SSL compression. | Antoine Pitrou | 2011-12-20 | 6 | -0/+83 |
| | | |||||
* | | merge 3.2 | Benjamin Peterson | 2011-12-19 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | don't mention implementation detail | Benjamin Peterson | 2011-12-19 | 1 | -5/+5 |
| | | |||||
* | | backout 7876cd49300d: Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum | Victor Stinner | 2011-12-19 | 1 | -4/+3 |
| | | |||||
* | | (bug #8684) fix 'fedora without thread buildbot' as per ↵ | Giampaolo Rodola' | 2011-12-19 | 1 | -1/+4 |
| | | | | | | | | http://bugs.python.org/issue8684 | ||||
* | | _Py_fopen now allows bytes filenames under non-Windows platforms. | Antoine Pitrou | 2011-12-19 | 1 | -2/+2 |
| | | |||||
* | | Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman | Antoine Pitrou | 2011-12-19 | 6 | -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 Pitrou | 2011-12-19 | 2 | -0/+66 |
|\ \ | |/ | | | | | Patch by Philipp Hagemeister. | ||||
| * | Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. | Antoine Pitrou | 2011-12-19 | 2 | -0/+66 |
| | | | | | | | | Patch by Philipp Hagemeister. | ||||
* | | Issue #13453: Try to increase some socket timeouts to make some buildbots stop | Charles-François Natali | 2011-12-19 | 1 | -1/+1 |
|\ \ | |/ | | | | | failing. | ||||
| * | Issue #13453: Try to increase some socket timeouts to make some buildbots stop | Charles-François Natali | 2011-12-19 | 1 | -1/+1 |
| | | | | | | | | failing. | ||||
* | | (Merge 3.2) Issue #13628: python-gdb.py is now able to retrieve more frames in | Victor Stinner | 2011-12-19 | 3 | -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 Python | Victor Stinner | 2011-12-19 | 3 | -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 servers | Antoine Pitrou | 2011-12-19 | 5 | -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 a | Charles-François Natali | 2011-12-19 | 1 | -9/+21 |
|\ \ | |/ | | | | | race condition). | ||||
| * | Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a | Charles-François Natali | 2011-12-19 | 1 | -9/+21 |
| | | | | | | | | race condition). | ||||
* | | #13576: merge with 3.2. | Ezio Melotti | 2011-12-19 | 2 | -0/+47 |
|\ \ | |/ | |||||
| * | #13576: add tests about the handling of (possibly broken) condcoms. | Ezio Melotti | 2011-12-19 | 2 | -0/+47 |
| | | |||||
* | | #13387: merge with 3.2. | Ezio Melotti | 2011-12-19 | 1 | -2/+1 |
|\ \ | |/ | |||||
| * | #13387: rephrase unclear sentence. | Ezio Melotti | 2011-12-19 | 1 | -2/+1 |
| | | |||||
* | | Merge 3.2 | Michael Foord | 2011-12-18 | 3 | -4/+14 |
|\ \ | |/ | |||||
| * | Fix inspect.getattr_static to work on modules (again). | Michael Foord | 2011-12-18 | 3 | -4/+14 |
| | | | | | | | | Closes issue 11813. | ||||
* | | iobench.py: add more info in the header | Victor Stinner | 2011-12-18 | 1 | -4/+15 |
| | | | | | | | | Write the Python version, Unicode implementation and the platform. | ||||
* | | (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception | Victor Stinner | 2011-12-18 | 2 | -12/+26 |
|\ \ | |/ | |||||
| * | Handle correctly _Py_fopen() error: don't replace the exception | Victor Stinner | 2011-12-18 | 1 | -3/+5 |
| | | |||||
* | | import.c now catchs _Py_stat() exceptions | Victor Stinner | 2011-12-18 | 3 | -13/+37 |
| | | | | | | | | _Py_stat() now returns -2 if an exception was raised. | ||||
* | | Followup to #7502: add __hash__ method and tests. | Antoine Pitrou | 2011-12-18 | 2 | -0/+29 |
|\ \ | |/ | |||||
| * | Followup to #7502: add __hash__ method and tests. | Antoine Pitrou | 2011-12-18 | 2 | -0/+30 |
| | | |||||
| * | Merge | Antoine Pitrou | 2011-12-18 | 3 | -12/+23 |
| |\ | |||||
* | \ | Merge | Antoine Pitrou | 2011-12-18 | 3 | -16/+28 |
|\ \ \ | |||||
| * \ \ | Merge with 3.2. | Georg Brandl | 2011-12-18 | 1 | -3/+3 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Small clarification in docstring of dict.update(): the positional argument ↵ | Georg Brandl | 2011-12-18 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | is not required. | ||||
| * | | | Issue #13617: Document that the result of the conversion of a Unicode object to | Victor Stinner | 2011-12-18 | 2 | -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 to | Victor Stinner | 2011-12-18 | 2 | -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 Pitrou | 2011-12-18 | 4 | -0/+85 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | Patch by Cédric Krier. | ||||
| * | | Merge | Antoine Pitrou | 2011-12-18 | 2 | -7/+7 |
| |\ \ | | |/ | |||||
| * | | Issue #7502: Fix equality comparison for DocTestCase instances. | Antoine Pitrou | 2011-12-18 | 4 | -0/+85 |
| | | | | | | | | | | | | Patch by Cédric Krier. | ||||
* | | | Merge | Antoine Pitrou | 2011-12-18 | 3 | -9/+10 |
|\ \ \ | |||||
| * \ \ | Null merge. | Charles-François Natali | 2011-12-18 | 0 | -0/+0 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Issue #11870: threading: Properly reinitialize threads internal locks and | Charles-François Natali | 2011-12-18 | 2 | -7/+7 |
| | |/ | | | | | | | | | | condition variables to avoid deadlocks in child processes. | ||||
| * | | Issue #11870: threading: Properly reinitialize threads internal locks and | Charles-François Natali | 2011-12-18 | 2 | -7/+7 |
| | | | | | | | | | | | | condition variables to avoid deadlocks in child processes. | ||||
| * | | Issue #8035: urllib: Fix a bug where the client could remain stuck after a | Charles-François Natali | 2011-12-18 | 2 | -2/+3 |
| |\ \ | | |/ | | | | | | | redirection or an error. | ||||
| | * | Issue #8035: urllib: Fix a bug where the client could remain stuck after a | Charles-François Natali | 2011-12-18 | 2 | -2/+3 |
| | | | | | | | | | | | | redirection or an error. | ||||
* | | | In the test SSL server, also output the cipher name | Antoine Pitrou | 2011-12-18 | 1 | -1/+5 |
|/ / | |||||
* | | Issue #13624: Write a specialized UTF-8 encoder to allow more optimization | Victor Stinner | 2011-12-18 | 3 | -150/+212 |
| | | | | | | | | The main bottleneck was the PyUnicode_READ() macro. | ||||
* | | Null merge | Antoine Pitrou | 2011-12-18 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #13522: Fix _Py_co_pow() documentation | Victor Stinner | 2011-12-18 | 1 | -1/+1 |
| | | | | | | | | Patch written by Arnaud Calmettes. |