Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix closed Issue #11968 - the start_response header values in wsgiref shoudl be | Senthil Kumaran | 2011-05-11 | 1 | -6/+6 |
| | | | | | str not bytes. The PEP-0333 says that and test_wsgiref follows the same. Updated docs accordingly. | ||||
* | Fix closes Issue #11799: urllib.request Authentication Handlers will raise a | Senthil Kumaran | 2011-05-11 | 1 | -8/+18 |
| | | | | ValueError when presented with an unsupported Authentication Scheme. | ||||
* | issue12039 - update the documentation of send_response method in ↵ | Senthil Kumaran | 2011-05-11 | 1 | -4/+11 |
| | | | | http.server.rst. | ||||
* | Issue #12039 - Update the http.server.rst with the requirement to call ↵ | Senthil Kumaran | 2011-05-11 | 1 | -3/+4 |
| | | | | `end_headers` after calling `send_header`. | ||||
* | Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in | Antoine Pitrou | 2011-05-10 | 1 | -2/+2 |
|\ | | | | | | | order to accept exactly one connection. Patch by Daniel Evers. | ||||
| * | Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in | Antoine Pitrou | 2011-05-10 | 1 | -2/+2 |
| | | | | | | | | order to accept exactly one connection. Patch by Daniel Evers. | ||||
* | | Issue #12011: signal.signal() and signal.siginterrupt() raise an OSError, | Victor Stinner | 2011-05-10 | 1 | -0/+3 |
| | | | | | | | | instead of a RuntimeError: OSError has an errno attribute. | ||||
* | | Merged trivial doc fix from 3.2. | Łukasz Langa | 2011-05-10 | 1 | -1/+0 |
|\ \ | |/ | |||||
| * | Actually print out the description of what changed. | Łukasz Langa | 2011-05-10 | 1 | -1/+0 |
| | | |||||
* | | merge | Raymond Hettinger | 2011-05-10 | 1 | -0/+104 |
|\ \ | |/ | |||||
| * | Issue 12047: Expand the style guide. | Raymond Hettinger | 2011-05-10 | 1 | -0/+104 |
| | | |||||
| * | (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional | Victor Stinner | 2011-05-09 | 1 | -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 #12012: ssl.PROTOCOL_SSLv2 becomes optional | Victor Stinner | 2011-05-09 | 1 | -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! | ||||
* | | | Merged solution for #12036 from 3.2 | Łukasz Langa | 2011-05-09 | 1 | -0/+5 |
|\ \ \ | |/ / | |||||
| * | | Closes #12036: ConfigParser: Document items() added the vars dictionary to ↵ | Łukasz Langa | 2011-05-09 | 1 | -0/+5 |
| | | | | | | | | | | | | the result | ||||
* | | | Issue #3709: a flush_headers method to BaseHTTPRequestHandler which manages the | Senthil Kumaran | 2011-05-09 | 1 | -9/+18 |
| | | | | | | | | | | | | | | | sending of headers to output stream and flushing the internal headers buffer. Patch contribution by Andrew Schaaf | ||||
* | | | merge 11164 | Martin v. Löwis | 2011-05-09 | 4 | -16/+4 |
|\ \ \ | |/ / | |||||
| * | | merge 11164 | Martin v. Löwis | 2011-05-09 | 4 | -16/+4 |
| |\ \ | | |/ | |||||
| | * | Stop trying to use _xmlplus in the xml module. Closes #11164. | Martin v. Löwis | 2011-05-09 | 4 | -16/+4 |
| | | | | | | | | | | | | Patch by Arfrever Frehtes Taifersar Arahesis. | ||||
* | | | Merge with 3.2. | Ezio Melotti | 2011-05-09 | 1 | -0/+9 |
|\ \ \ | |/ / | |||||
| * | | Merge with 3.1. | Ezio Melotti | 2011-05-09 | 1 | -0/+9 |
| |\ \ | | |/ | |||||
| | * | Add a note to the str.find doc to suggest the use of the "in" operator. | Ezio Melotti | 2011-05-09 | 1 | -0/+9 |
| | | | |||||
* | | | note the point of having log2 | Benjamin Peterson | 2011-05-09 | 1 | -1/+2 |
| | | | |||||
* | | | Issue #11888: Add log2 function to math module. Patch written by Mark | Victor Stinner | 2011-05-08 | 2 | -16/+36 |
| | | | | | | | | | | | | Dickinson. | ||||
* | | | Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional | Victor Stinner | 2011-05-08 | 1 | -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 byte | Victor Stinner | 2011-05-08 | 2 | -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 the | Victor Stinner | 2011-05-07 | 3 | -3/+61 |
| | | | | | | | | | | | | signal module. | ||||
* | | | #11072- applying http://bugs.python.org/review/11072/show suggestions | Giampaolo Rodola' | 2011-05-07 | 1 | -8/+8 |
| | | | |||||
* | | | faulthandler: dump all threads by default | Victor Stinner | 2011-05-07 | 1 | -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-06 | 1 | -6/+23 |
| | | | |||||
* | | | Issue #8808: The IMAP4_SSL constructor now allows passing an SSLContext | Antoine Pitrou | 2011-05-06 | 1 | -2/+9 |
| | | | | | | | | | | | | | | | parameter to control parameters of the secure channel. Patch by Sijin Joseph. | ||||
* | | | Issue #10775: assertRaises, assertRaisesRegex, assertWarns, and ↵ | Ezio Melotti | 2011-05-06 | 1 | -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 date | Eli Bendersky | 2011-05-06 | 1 | -10/+106 |
| | | | |||||
* | | | Merge #11647 update from 3.2 | Nick Coghlan | 2011-05-05 | 1 | -2/+12 |
|\ \ \ | |/ / | |||||
| * | | Issue #11647: allow contextmanager objects to be used as decorators as ↵ | Nick Coghlan | 2011-05-05 | 1 | -2/+12 |
| | | | | | | | | | | | | described in the docs. Initial patch by Ysj Ray. | ||||
* | | | #11997: merge with 3.2. | Ezio Melotti | 2011-05-05 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | #11997: merge with 3.1. | Ezio Melotti | 2011-05-05 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | #11997: fix typo in init.rst. | Ezio Melotti | 2011-05-05 | 1 | -1/+1 |
| | | | |||||
* | | | Mention that timezone is a subclass of tzinfo. | Alexander Belopolsky | 2011-05-04 | 1 | -5/+6 |
| | | | |||||
* | | | Issue #8407: signal.pthread_sigmask() returns a set instead of a list | Victor Stinner | 2011-05-04 | 1 | -3/+4 |
| | | | | | | | | | | | | Update the doc. Refactor also related tests. | ||||
* | | | Fix #11834. Correct site-packages paths. | Brian Curtin | 2011-05-04 | 1 | -1/+1 |
|\ \ \ | |/ / | | | | | | | Patch by Bryce Verdier. | ||||
| * | | Fix #11834. Correct site-packages paths. | Brian Curtin | 2011-05-04 | 1 | -1/+1 |
| |\ \ | | |/ | | | | | | | Patch by Bryce Verdier. | ||||
| | * | Fix #11834. Correct site-packages paths. | Brian Curtin | 2011-05-04 | 1 | -1/+1 |
| | | | | | | | | | | | | Patch by Bryce Verdier. | ||||
* | | | #11985: merge with 3.2. | Ezio Melotti | 2011-05-03 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | #11985: merge with 3.1. | Ezio Melotti | 2011-05-03 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | #11985: document the return value of platform.python_implementation for PyPy. | Ezio Melotti | 2011-05-03 | 1 | -1/+1 |
| | | | |||||
* | | | Adjust OS/2 & VMS grammar, and add Windows 2000 to the unsupported list. | Brian Curtin | 2011-05-03 | 1 | -1/+4 |
| | | | |||||
* | | | Issue #11930: Added Misc/NEWS and versionchanged entries. | Alexander Belopolsky | 2011-05-02 | 1 | -0/+4 |
| | | | |||||
* | | | Issue #11930: Remove year >= 1000 limitation from datetime.strftime. | Alexander Belopolsky | 2011-05-02 | 1 | -6/+2 |
| | | | | | | | | | | | | Patch by Victor Stinner. | ||||
* | | | Issue #11930: Remove deprecated time.accept2dyear. | Alexander Belopolsky | 2011-05-02 | 1 | -46/+2 |
| | | |