summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #12012: ssl.PROTOCOL_SSLv2 becomes optionalVictor Stinner2011-05-081-0/+3
| | | | | | | OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter!
* Issue #8407: The signal handler writes the signal number as a single byteVictor Stinner2011-05-082-3/+11
| | | | | instead of a nul byte into the wakeup file descriptor. So it is possible to wait more than one signal and know which signals were raised.
* Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to theVictor Stinner2011-05-073-3/+61
| | | | signal module.
* #11072- applying http://bugs.python.org/review/11072/show suggestionsGiampaolo Rodola'2011-05-071-8/+8
|
* faulthandler: dump all threads by defaultVictor Stinner2011-05-071-10/+11
| | | | | | | | | | * Set the default value of all_threads arguments to True * Py_FatalError() dumps all threads, instead of only the current thread Dump only the current thread is not reliable. In some cases, Python is unable to retrieve the state of the current thread and so is unable to dump the traceback. faulthandler keeps a reference to the interpreter and so is always able to dump the traceback of all threads.
* Issue #11072: added MLSD command (RFC-3659) support to ftplib.Giampaolo Rodola'2011-05-061-6/+23
|
* Issue #8808: The IMAP4_SSL constructor now allows passing an SSLContextAntoine Pitrou2011-05-061-2/+9
| | | | | parameter to control parameters of the secure channel. Patch by Sijin Joseph.
* Issue #10775: assertRaises, assertRaisesRegex, assertWarns, and ↵Ezio Melotti2011-05-061-12/+33
| | | | assertWarnsRegex now accept a keyword argument 'msg' when used as context managers. Initial patch by Winston Ewert.
* Issue #11015: bring test.support docs up to dateEli Bendersky2011-05-061-10/+106
|
* Merge #11647 update from 3.2Nick Coghlan2011-05-051-2/+12
|\
| * Issue #11647: allow contextmanager objects to be used as decorators as ↵Nick Coghlan2011-05-051-2/+12
| | | | | | | | described in the docs. Initial patch by Ysj Ray.
* | #11997: merge with 3.2.Ezio Melotti2011-05-051-1/+1
|\ \ | |/
| * #11997: merge with 3.1.Ezio Melotti2011-05-051-1/+1
| |\
| | * #11997: fix typo in init.rst.Ezio Melotti2011-05-051-1/+1
| | |
* | | Mention that timezone is a subclass of tzinfo.Alexander Belopolsky2011-05-041-5/+6
| | |
* | | Issue #8407: signal.pthread_sigmask() returns a set instead of a listVictor Stinner2011-05-041-3/+4
| | | | | | | | | | | | Update the doc. Refactor also related tests.
* | | Fix #11834. Correct site-packages paths.Brian Curtin2011-05-041-1/+1
|\ \ \ | |/ / | | | | | | Patch by Bryce Verdier.
| * | Fix #11834. Correct site-packages paths.Brian Curtin2011-05-041-1/+1
| |\ \ | | |/ | | | | | | Patch by Bryce Verdier.
| | * Fix #11834. Correct site-packages paths.Brian Curtin2011-05-041-1/+1
| | | | | | | | | | | | Patch by Bryce Verdier.
* | | #11985: merge with 3.2.Ezio Melotti2011-05-031-1/+1
|\ \ \ | |/ /
| * | #11985: merge with 3.1.Ezio Melotti2011-05-031-1/+1
| |\ \ | | |/
| | * #11985: document the return value of platform.python_implementation for PyPy.Ezio Melotti2011-05-031-1/+1
| | |
* | | Adjust OS/2 & VMS grammar, and add Windows 2000 to the unsupported list.Brian Curtin2011-05-031-1/+4
| | |
* | | Issue #11930: Added Misc/NEWS and versionchanged entries.Alexander Belopolsky2011-05-021-0/+4
| | |
* | | Issue #11930: Remove year >= 1000 limitation from datetime.strftime.Alexander Belopolsky2011-05-021-6/+2
| | | | | | | | | | | | Patch by Victor Stinner.
* | | Issue #11930: Remove deprecated time.accept2dyear.Alexander Belopolsky2011-05-021-46/+2
| | |
* | | Merge 3.2Éric Araujo2011-05-022-3/+3
|\ \ \ | |/ /
| * | Merge 3.1Éric Araujo2011-05-022-3/+3
| |\ \ | | |/
| | * Branch mergeÉric Araujo2011-05-021-2/+2
| | |\
| | | * Fix wordingÉric Araujo2011-05-011-2/+2
| | | |
| | * | Add missing colonÉric Araujo2011-05-021-1/+1
| | | |
* | | | merge 3.2Benjamin Peterson2011-05-021-1/+1
|\ \ \ \ | |/ / /
| * | | merge 3.1Benjamin Peterson2011-05-021-1/+1
| |\ \ \ | | |/ /
| | * | Fix spelling.Raymond Hettinger2011-05-021-1/+1
| | | |
* | | | (Merge 3.2) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS XVictor Stinner2011-05-011-0/+4
|\ \ \ \ | |/ / / | | | | | | | | | | | | to get around a mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso.
| * | | (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS XVictor Stinner2011-05-011-0/+4
| |\ \ \ | | |/ / | | | | | | | | | | | | to get around a mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso.
| | * | Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around aVictor Stinner2011-05-011-0/+4
| | | | | | | | | | | | | | | | mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso.
* | | | merge 3.2Benjamin Peterson2011-05-011-3/+7
|\ \ \ \ | |/ / /
| * | | merge 3.1Benjamin Peterson2011-05-011-3/+7
| |\ \ \ | | |/ /
| | * | note abcs of int and float (closes #11977)Benjamin Peterson2011-05-011-3/+7
| | | |
* | | | merge with 3.2Georg Brandl2011-05-011-2/+1
|\ \ \ \ | |/ / /
| * | | Split combined code/doctest code blocks in two blocks, to enable proper ↵Georg Brandl2011-05-011-2/+5
| | | | | | | | | | | | | | | | highlighting.
* | | | Split combined code/doctest code blocks in two blocks, to enable proper ↵Georg Brandl2011-05-011-0/+4
| | | | | | | | | | | | | | | | highlighting.
* | | | Merge #11883: fix email examples by adding 'localhost' to SMTP constructor callsR David Murray2011-04-303-3/+3
|\ \ \ \ | |/ / /
| * | | Merge #11883: fix email examples by adding 'localhost' to SMTP constructor callsR David Murray2011-04-303-3/+3
| |\ \ \ | | |/ /
| | * | #11883: fix email examples by adding 'localhost' to SMTP constructor callsR David Murray2011-04-303-3/+3
| | | |
* | | | Merge #11883: replace incorrect call to sendmail with correct call to ↵R David Murray2011-04-301-1/+1
|\ \ \ \ | |/ / / | | | | | | | | send_message
| * | | #11883: replace incorrect call to sendmail with correct call to send_messageR David Murray2011-04-301-1/+1
| | | |
* | | | Merge #11901: post-commit review fixes per Georg BrandlR David Murray2011-04-301-7/+7
|\ \ \ \ | |/ / /
| * | | Merge #11901: post-commit review fixes per Georg BrandlR David Murray2011-04-301-7/+7
| |\ \ \ | | |/ /