summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13627: Add support for SSL Elliptic Curve-based Diffie-HellmanAntoine Pitrou2011-12-191-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 Pitrou2011-12-191-0/+1
|\ | | | | | | Patch by Philipp Hagemeister.
| * Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton.Antoine Pitrou2011-12-191-0/+1
| | | | | | | | Patch by Philipp Hagemeister.
* | (Merge 3.2) Issue #13628: python-gdb.py is now able to retrieve more frames inVictor Stinner2011-12-191-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 PythonVictor Stinner2011-12-191-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 serversAntoine Pitrou2011-12-191-0/+4
| | | | | | | | | | choose the cipher based on their own preferences, rather than on the client's.
* | Merge 3.2Michael Foord2011-12-181-0/+3
|\ \ | |/
| * Fix inspect.getattr_static to work on modules (again).Michael Foord2011-12-181-0/+3
| | | | | | | | Closes issue 11813.
* | Issue #7502: Fix equality comparison for DocTestCase instances.Antoine Pitrou2011-12-182-0/+4
|\ \ | |/ | | | | Patch by Cédric Krier.
| * MergeAntoine Pitrou2011-12-181-0/+3
| |\
| | * Issue #11870: threading: Properly reinitialize threads internal locks andCharles-François Natali2011-12-181-0/+3
| | | | | | | | | | | | condition variables to avoid deadlocks in child processes.
| * | Issue #7502: Fix equality comparison for DocTestCase instances.Antoine Pitrou2011-12-182-0/+4
| |/ | | | | | | Patch by Cédric Krier.
* | Issue #11870: threading: Properly reinitialize threads internal locks andCharles-François Natali2011-12-181-0/+3
| | | | | | | | 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-181-0/+3
|\ \ | |/ | | | | redirection or an error.
| * Issue #8035: urllib: Fix a bug where the client could remain stuck after aCharles-François Natali2011-12-181-0/+3
| | | | | | | | redirection or an error.
* | Issue #13522: document error return values of some float and complex C API ↵Antoine Pitrou2011-12-181-0/+1
|\ \ | |/ | | | | functions.
| * Issue #13522: document error return values of some float and complex C API ↵Antoine Pitrou2011-12-181-0/+1
| | | | | | | | functions.
* | Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-171-0/+1
|\ \ | |/ | | | | Patch written by Brice Berna.
| * Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-171-0/+1
| | | | | | | | Patch written by Brice Berna.
* | Issue #13530: Document os.lseek() resultVictor Stinner2011-12-171-0/+1
|\ \ | |/ | | | | Patch written by Jérémy Anger.
| * Issue #13530: Document os.lseek() resultVictor Stinner2011-12-171-0/+1
| | | | | | | | Patch written by Jérémy Anger.
* | Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by MichaelCharles-François Natali2011-12-171-0/+1
| | | | | | | | Farrell.
* | Issue #13560: os.strerror() now uses the current locale encoding instead of ↵Victor Stinner2011-12-171-0/+3
| | | | | | | | UTF-8
* | Issue #13560: Add PyUnicode_EncodeLocale()Victor Stinner2011-12-171-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 filesystemAntoine Pitrou2011-12-161-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 Pitrou2011-12-161-0/+3
|\ \ | |/ | | | | | | | | overwrite it. Original patch by Hallvard B Furuseth.
| * Issue #10350: Read and save errno before calling a function which might ↵Antoine Pitrou2011-12-161-0/+3
| | | | | | | | | | | | overwrite it. Original patch by Hallvard B Furuseth.
* | Add ACKS entry for 57f0af61da53.Antoine Pitrou2011-12-161-0/+1
| |
* | Issue #6695: Full garbage collection runs now clear the freelist of set objects.Antoine Pitrou2011-12-161-0/+3
| | | | | | | | Initial patch by Matthias Troffaes.
* | improve abstract property support (closes #11610)Benjamin Peterson2011-12-152-0/+3
| | | | | | | | Thanks to Darren Dale for patch.
* | Fix OSError.__init__ and OSError.__new__ so that each of them can beAntoine Pitrou2011-12-151-0/+3
| | | | | | | | overriden and take additional arguments (followup to issue #12555).
* | Fix the fix for issue #12149: it was incorrect, although it had the sideAntoine Pitrou2011-12-151-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 sideAntoine Pitrou2011-12-151-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 Inge2011-12-151-3/+3
|\ \ | |/
| * Issue #13591: Moving the NEWS line to the right release.Meador Inge2011-12-151-3/+3
| |
* | Issue #13591: import_module potentially imports a module twice.Meador Inge2011-12-151-0/+3
|\ \ | |/
| * Issue #13591: import_module potentially imports a module twice.Meador Inge2011-12-151-0/+3
| |
* | Issue #4625: Add NEWS entry.Ned Deily2011-12-141-0/+4
|\ \ | |/
| * Issue #4625: add NEWS entry.Ned Deily2011-12-141-0/+4
| |
* | Fix #13449: add 'blocking' parameter to sched.scheduler.run() so that the ↵Giampaolo Rodola'2011-12-141-1/+5
| | | | | | | | scheduler can be used in non-blocking applications
* | Fix #8684: make sched.scheduler class thread-safeGiampaolo Rodola'2011-12-141-0/+3
| |
* | Merge 3.2Alexandre Vassalotti2011-12-131-0/+3
|\ \ | |/
| * Issue #13505: Make pickling of bytes object compatible with Python 2.Alexandre Vassalotti2011-12-131-0/+3
| | | | | | | | Initial patch by sbt.
* | merge headsBenjamin Peterson2011-12-101-0/+2
|\ \
| * | Issue #5689: Add support for lzma compression to the tarfile module.Lars Gustäbel2011-12-101-0/+2
| | |
* | | alias resource.error to OSErrorBenjamin Peterson2011-12-101-0/+2
|/ /
* | Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's ↵Florent Xicluna2011-12-101-0/+5
| | | | | | | | DeprecationWarning (cgi, importlib, nntplib, smtpd).
* | (Merge 3.2) Issue #5905: time.strftime() is now using the locale encoding,Victor Stinner2011-12-091-0/+3
|\ \ | |/ | | | | instead of UTF-8, if the wcsftime() function is not available.
| * Issue #5905: time.strftime() is now using the locale encoding, instead ofVictor Stinner2011-12-091-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 Deily2011-12-072-0/+4
|\ \ | |/ | | | | (Patch by Tal Einat)