Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman | Antoine Pitrou | 2011-12-19 | 1 | -0/+4 |
| | | | | | 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 | 1 | -0/+1 |
|\ | | | | | | | Patch by Philipp Hagemeister. | ||||
| * | Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. | Antoine Pitrou | 2011-12-19 | 1 | -0/+1 |
| | | | | | | | | Patch by Philipp Hagemeister. | ||||
* | | (Merge 3.2) Issue #13628: python-gdb.py is now able to retrieve more frames in | Victor Stinner | 2011-12-19 | 1 | -1/+4 |
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | 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 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | 1 | -0/+4 |
| | | | | | | | | | | choose the cipher based on their own preferences, rather than on the client's. | ||||
* | | Merge 3.2 | Michael Foord | 2011-12-18 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Fix inspect.getattr_static to work on modules (again). | Michael Foord | 2011-12-18 | 1 | -0/+3 |
| | | | | | | | | Closes issue 11813. | ||||
* | | Issue #7502: Fix equality comparison for DocTestCase instances. | Antoine Pitrou | 2011-12-18 | 2 | -0/+4 |
|\ \ | |/ | | | | | Patch by Cédric Krier. | ||||
| * | Merge | Antoine Pitrou | 2011-12-18 | 1 | -0/+3 |
| |\ | |||||
| | * | Issue #11870: threading: Properly reinitialize threads internal locks and | Charles-François Natali | 2011-12-18 | 1 | -0/+3 |
| | | | | | | | | | | | | condition variables to avoid deadlocks in child processes. | ||||
| * | | Issue #7502: Fix equality comparison for DocTestCase instances. | Antoine Pitrou | 2011-12-18 | 2 | -0/+4 |
| |/ | | | | | | | Patch by Cédric Krier. | ||||
* | | Issue #11870: threading: Properly reinitialize threads internal locks and | Charles-François Natali | 2011-12-18 | 1 | -0/+3 |
| | | | | | | | | 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 | 1 | -0/+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 | 1 | -0/+3 |
| | | | | | | | | redirection or an error. | ||||
* | | Issue #13522: document error return values of some float and complex C API ↵ | Antoine Pitrou | 2011-12-18 | 1 | -0/+1 |
|\ \ | |/ | | | | | functions. | ||||
| * | Issue #13522: document error return values of some float and complex C API ↵ | Antoine Pitrou | 2011-12-18 | 1 | -0/+1 |
| | | | | | | | | functions. | ||||
* | | Issue #11231: Fix bytes and bytearray docstrings | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
|\ \ | |/ | | | | | Patch written by Brice Berna. | ||||
| * | Issue #11231: Fix bytes and bytearray docstrings | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
| | | | | | | | | Patch written by Brice Berna. | ||||
* | | Issue #13530: Document os.lseek() result | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
|\ \ | |/ | | | | | Patch written by Jérémy Anger. | ||||
| * | Issue #13530: Document os.lseek() result | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
| | | | | | | | | Patch written by Jérémy Anger. | ||||
* | | Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by Michael | Charles-François Natali | 2011-12-17 | 1 | -0/+1 |
| | | | | | | | | Farrell. | ||||
* | | Issue #13560: os.strerror() now uses the current locale encoding instead of ↵ | Victor Stinner | 2011-12-17 | 1 | -0/+3 |
| | | | | | | | | UTF-8 | ||||
* | | Issue #13560: Add PyUnicode_EncodeLocale() | Victor Stinner | 2011-12-17 | 1 | -2/+6 |
| | | | | | | | | | | | | * Use PyUnicode_EncodeLocale() in time.strftime() if wcsftime() is not available * Document my last changes in Misc/NEWS | ||||
* | | Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem | Antoine Pitrou | 2011-12-16 | 1 | -0/+4 |
| | | | | | | | | | | encoding and the surrogateescape error handler, rather than UTF-8. Patch by David Watson. | ||||
* | | Issue #10350: Read and save errno before calling a function which might ↵ | Antoine Pitrou | 2011-12-16 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | | | overwrite it. Original patch by Hallvard B Furuseth. | ||||
| * | Issue #10350: Read and save errno before calling a function which might ↵ | Antoine Pitrou | 2011-12-16 | 1 | -0/+3 |
| | | | | | | | | | | | | overwrite it. Original patch by Hallvard B Furuseth. | ||||
* | | Add ACKS entry for 57f0af61da53. | Antoine Pitrou | 2011-12-16 | 1 | -0/+1 |
| | | |||||
* | | Issue #6695: Full garbage collection runs now clear the freelist of set objects. | Antoine Pitrou | 2011-12-16 | 1 | -0/+3 |
| | | | | | | | | Initial patch by Matthias Troffaes. | ||||
* | | improve abstract property support (closes #11610) | Benjamin Peterson | 2011-12-15 | 2 | -0/+3 |
| | | | | | | | | Thanks to Darren Dale for patch. | ||||
* | | Fix OSError.__init__ and OSError.__new__ so that each of them can be | Antoine Pitrou | 2011-12-15 | 1 | -0/+3 |
| | | | | | | | | overriden and take additional arguments (followup to issue #12555). | ||||
* | | Fix the fix for issue #12149: it was incorrect, although it had the side | Antoine Pitrou | 2011-12-15 | 1 | -0/+4 |
|\ \ | |/ | | | | | | | effect of appearing to resolve the issue. Thanks to Mark Shannon for noticing. | ||||
| * | Fix the fix for issue #12149: it was incorrect, although it had the side | Antoine Pitrou | 2011-12-15 | 1 | -0/+4 |
| | | | | | | | | | | effect of appearing to resolve the issue. Thanks to Mark Shannon for noticing. | ||||
* | | Issue #13591: Moving the NEWS line to the right release. | Meador Inge | 2011-12-15 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Issue #13591: Moving the NEWS line to the right release. | Meador Inge | 2011-12-15 | 1 | -3/+3 |
| | | |||||
* | | Issue #13591: import_module potentially imports a module twice. | Meador Inge | 2011-12-15 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #13591: import_module potentially imports a module twice. | Meador Inge | 2011-12-15 | 1 | -0/+3 |
| | | |||||
* | | Issue #4625: Add NEWS entry. | Ned Deily | 2011-12-14 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue #4625: add NEWS entry. | Ned Deily | 2011-12-14 | 1 | -0/+4 |
| | | |||||
* | | Fix #13449: add 'blocking' parameter to sched.scheduler.run() so that the ↵ | Giampaolo Rodola' | 2011-12-14 | 1 | -1/+5 |
| | | | | | | | | scheduler can be used in non-blocking applications | ||||
* | | Fix #8684: make sched.scheduler class thread-safe | Giampaolo Rodola' | 2011-12-14 | 1 | -0/+3 |
| | | |||||
* | | Merge 3.2 | Alexandre Vassalotti | 2011-12-13 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #13505: Make pickling of bytes object compatible with Python 2. | Alexandre Vassalotti | 2011-12-13 | 1 | -0/+3 |
| | | | | | | | | Initial patch by sbt. | ||||
* | | merge heads | Benjamin Peterson | 2011-12-10 | 1 | -0/+2 |
|\ \ | |||||
| * | | Issue #5689: Add support for lzma compression to the tarfile module. | Lars Gustäbel | 2011-12-10 | 1 | -0/+2 |
| | | | |||||
* | | | alias resource.error to OSError | Benjamin Peterson | 2011-12-10 | 1 | -0/+2 |
|/ / | |||||
* | | Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's ↵ | Florent Xicluna | 2011-12-10 | 1 | -0/+5 |
| | | | | | | | | DeprecationWarning (cgi, importlib, nntplib, smtpd). | ||||
* | | (Merge 3.2) Issue #5905: time.strftime() is now using the locale encoding, | Victor Stinner | 2011-12-09 | 1 | -0/+3 |
|\ \ | |/ | | | | | instead of UTF-8, if the wcsftime() function is not available. | ||||
| * | Issue #5905: time.strftime() is now using the locale encoding, instead of | Victor Stinner | 2011-12-09 | 1 | -0/+3 |
| | | | | | | | | UTF-8, if the wcsftime() function is not available. | ||||
* | | Issue #8641: Update IDLE 3 syntax coloring to recognize b".." and not u"..". | Ned Deily | 2011-12-07 | 2 | -0/+4 |
|\ \ | |/ | | | | | (Patch by Tal Einat) |