Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Logging: added stack_info argument. | Vinay Sajip | 2010-11-14 | 1 | -8/+65 |
| | |||||
* | fix copy-editing level nits | Fred Drake | 2010-11-13 | 1 | -103/+105 |
| | |||||
* | Issue #4471: Add the IMAP.starttls() method to enable encryption on | Antoine Pitrou | 2010-11-12 | 1 | -0/+11 |
| | | | | standard IMAP4 connections. Original patch by Lorenzo M. Catucci. | ||||
* | Fix weird line block in table. | Georg Brandl | 2010-11-12 | 1 | -1/+0 |
| | |||||
* | #10008: Fix duplicate index entry. | Georg Brandl | 2010-11-12 | 1 | -0/+1 |
| | |||||
* | #7950: add warning about security implications of shell=True to subprocess docs | R. David Murray | 2010-11-12 | 1 | -0/+18 |
| | | | | Patch by Chris Rebert. | ||||
* | #1466065: add validate option to base64.b64decode | R. David Murray | 2010-11-11 | 1 | -4/+8 |
| | | | | | | | Patch by Neil Tallim. This provides a mechanism for module users to achieve RFC 3548 compliance in the cases where ignoring non-base64-alphabet input characters is *not* mandated by the RFC that references RFC 3548. | ||||
* | Review the new configparser docs. | Georg Brandl | 2010-11-11 | 1 | -473/+475 |
| | |||||
* | Issue #5412: extend configparser to support mapping access | Łukasz Langa | 2010-11-10 | 1 | -288/+759 |
| | |||||
* | Issue #8028: multiprocessing: Documented that ``Process.terminate`` | Ask Solem | 2010-11-09 | 1 | -3/+3 |
| | | | | is only intented for use by the parent process. | ||||
* | Issue #7707: Documented that multiprocessing.Queue operations during | Ask Solem | 2010-11-09 | 1 | -1/+3 |
| | | | | import can lead to deadlocks. | ||||
* | Documented the new error_callback keyword argument to multiprocessing.Pool's ↵ | Ask Solem | 2010-11-09 | 1 | -5/+19 |
| | | | | apply_async and map_async | ||||
* | Issue #10022: The dictionary returned by the `getpeercert()` method | Antoine Pitrou | 2010-11-09 | 1 | -5/+7 |
| | | | | of SSL sockets now has additional items such as `issuer` and `notBefore`. | ||||
* | Make `usenetrc` False by default (the old behaviour of having it True by | Antoine Pitrou | 2010-11-09 | 1 | -5/+7 |
| | | | | default could be rather confusing). | ||||
* | Issue #1926: Add support for NNTP over SSL on port 563, as well as | Antoine Pitrou | 2010-11-09 | 1 | -2/+47 |
| | | | | STARTTLS. Patch by Andrew Vant. | ||||
* | Issue #7061: Added a 'Turtle star' sidebar | Alexander Belopolsky | 2010-11-09 | 4 | -0/+457 |
| | |||||
* | Fixed a typo in ReST markup. | Alexander Belopolsky | 2010-11-09 | 1 | -2/+1 |
| | |||||
* | Issue #10335: Add tokenize.open(), detect the file encoding using | Victor Stinner | 2010-11-09 | 1 | -8/+9 |
| | | | | tokenize.detect_encoding() and open it in read only mode. | ||||
* | #10321: Add support for sending binary DATA and Message objects to smtplib | R. David Murray | 2010-11-08 | 1 | -3/+29 |
| | |||||
* | Fix typo. | Georg Brandl | 2010-11-08 | 1 | -1/+1 |
| | |||||
* | Fix latex conversion glitch in property/feature descriptions. | Georg Brandl | 2010-11-08 | 1 | -42/+51 |
| | |||||
* | Fix encode/decode method doc of str, bytes, bytearray types | Victor Stinner | 2010-11-07 | 1 | -9/+9 |
| | | | | | | * Specify the default encoding: write 'utf-8' instead of sys.getdefaultencoding(), because the default encoding is now constant * Specify the default errors value | ||||
* | Fix Issue10226 - Clarifying the role of the netloc separator. | Senthil Kumaran | 2010-11-07 | 1 | -5/+4 |
| | |||||
* | Issue #10145: the float.is_integer method was undocumented. | Mark Dickinson | 2010-11-07 | 1 | -4/+14 |
| | |||||
* | Issue 10297: Add missing import in decimal example snippet. | Mark Dickinson | 2010-11-07 | 1 | -0/+1 |
| | |||||
* | Added example for str.format_map(). | Eric Smith | 2010-11-06 | 1 | -2/+10 |
| | |||||
* | Tweak example to make clear the argument is a boolean, not any integer. | Éric Araujo | 2010-11-06 | 1 | -1/+1 |
| | | | | With Raymond’s approval. | ||||
* | Fix wrapper/wrapped typo (with Raymond’s blessing) | Éric Araujo | 2010-11-06 | 1 | -1/+1 |
| | |||||
* | Fix typo | Éric Araujo | 2010-11-06 | 1 | -1/+1 |
| | |||||
* | Fix typo from r86170. | Éric Araujo | 2010-11-06 | 1 | -1/+1 |
| | |||||
* | Issue #10282: Add a `nntp_implementation` attribute to NNTP objects. | Antoine Pitrou | 2010-11-05 | 1 | -12/+34 |
| | |||||
* | Merge the doc for assertTrue/False, assert[Not]AlmostEqual, ↵ | Ezio Melotti | 2010-11-05 | 1 | -86/+28 |
| | | | | assert[Not]RegexpMatches, rephrase a couple of paragraphs, and remove redundant doc about the msg arg. | ||||
* | Issue #10283: Add a `group_pattern` argument to NNTP.list(). | Antoine Pitrou | 2010-11-04 | 1 | -8/+14 |
| | |||||
* | Move the deprecated aliases in a new section. | Ezio Melotti | 2010-11-04 | 1 | -30/+24 |
| | |||||
* | Issue #6081: Add str.format_map. str.format_map(mapping) is similar to ↵ | Eric Smith | 2010-11-04 | 1 | -0/+8 |
| | | | | str.format(**mapping), except mapping does not get converted to a dict. | ||||
* | Merge the doc for assertIs[Not], assertIs[Not]None, and assert[Not]IsInstance. | Ezio Melotti | 2010-11-04 | 1 | -32/+9 |
| | |||||
* | Demote one warning to a note. There's no security risk here, just a note on ↵ | Raymond Hettinger | 2010-11-04 | 1 | -1/+1 |
| | | | | usage and avialability. | ||||
* | Put warning block in the main flow of text. | Raymond Hettinger | 2010-11-04 | 1 | -16/+14 |
| | |||||
* | Implement http://bugs.python.org/issue10155 using And Clover's patch, w/added | Phillip J. Eby | 2010-11-03 | 1 | -0/+44 |
| | | | | | docs and support for more client-generated CGI variables. (This should complete the WSGI 1.0.1 compliance changes for Python 3.x.) | ||||
* | Divide the context manager signature from the normal one for consistency ↵ | Ezio Melotti | 2010-11-03 | 1 | -2/+4 |
| | | | | with the other methods. | ||||
* | Minor cleanups to unittest doc. | Ezio Melotti | 2010-11-03 | 1 | -4/+4 |
| | |||||
* | List the assert* methods in tables in unittest doc. | Ezio Melotti | 2010-11-03 | 1 | -194/+328 |
| | |||||
* | Issue #10285: explain the `flag` return field better in NNTP.list(). | Antoine Pitrou | 2010-11-03 | 1 | -2/+11 |
| | | | | Patch by Julien Élie. | ||||
* | Issue #10281: nntplib now returns None for absent fields in the OVER/XOVER | Antoine Pitrou | 2010-11-03 | 1 | -0/+2 |
| | | | | response, instead of raising an exception. | ||||
* | Update docs (and sample app in wsgiref.simple_server) to reflect PEP 3333. | Phillip J. Eby | 2010-11-03 | 1 | -20/+20 |
| | |||||
* | Updating unittest docs to reflect change in ↵ | Michael Foord | 2010-11-02 | 1 | -4/+4 |
| | | | | unittest.TestCase.assert[Not]AlmostEqual signature change | ||||
* | Issue #10184: Touch directories only once when extracting a tarfile. | Martin v. Löwis | 2010-11-01 | 1 | -2/+5 |
| | |||||
* | Issue #10199: Moved Demo/turtle under Lib/ | Alexander Belopolsky | 2010-11-01 | 1 | -9/+16 |
| | |||||
* | Issue #7061: Simplified a section title. | Alexander Belopolsky | 2010-11-01 | 1 | -2/+2 |
| | |||||
* | Issue 7447: Improve docs for sum(). | Raymond Hettinger | 2010-10-31 | 1 | -3/+6 |
| |