summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Ignore suspicious-ignore file.Georg Brandl2010-11-131-6/+9
|
* fix copy-editing level nitsFred Drake2010-11-131-103/+105
|
* use appropriate markupFred Drake2010-11-131-1/+1
|
* Issue #4471: Add the IMAP.starttls() method to enable encryption onAntoine Pitrou2010-11-121-0/+11
| | | | standard IMAP4 connections. Original patch by Lorenzo M. Catucci.
* Add a deprecated-removed directive that allows to give the version of ↵Georg Brandl2010-11-121-0/+38
| | | | removal for deprecations.
* Fix weird line block in table.Georg Brandl2010-11-121-1/+0
|
* Switch to Sphinx 1.0.5.Georg Brandl2010-11-123-3/+3
|
* #10008: Fix duplicate index entry.Georg Brandl2010-11-121-0/+1
|
* Build a PDF of the FAQs too.Georg Brandl2010-11-121-0/+2
|
* (no commit message)Terry Reedy2010-11-121-5/+6
|
* #7950: add warning about security implications of shell=True to subprocess docsR. David Murray2010-11-121-0/+18
| | | | Patch by Chris Rebert.
* Issue #10389: Documented rules for use of case in section titles.Alexander Belopolsky2010-11-111-15/+58
|
* #1466065: add validate option to base64.b64decodeR. David Murray2010-11-111-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 Brandl2010-11-111-473/+475
|
* Issue #5412: extend configparser to support mapping accessŁukasz Langa2010-11-101-288/+759
|
* Fix typo.Georg Brandl2010-11-101-1/+1
|
* Issue #8028: multiprocessing: Documented that ``Process.terminate``Ask Solem2010-11-091-3/+3
| | | | is only intented for use by the parent process.
* Issue #7707: Documented that multiprocessing.Queue operations duringAsk Solem2010-11-091-1/+3
| | | | import can lead to deadlocks.
* Documented the new error_callback keyword argument to multiprocessing.Pool's ↵Ask Solem2010-11-091-5/+19
| | | | apply_async and map_async
* Issue #10022: The dictionary returned by the `getpeercert()` methodAntoine Pitrou2010-11-091-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 byAntoine Pitrou2010-11-091-5/+7
| | | | default could be rather confusing).
* Issue #1926: Add support for NNTP over SSL on port 563, as well asAntoine Pitrou2010-11-091-2/+47
| | | | STARTTLS. Patch by Andrew Vant.
* Issue #7061: Added a 'Turtle star' sidebarAlexander Belopolsky2010-11-095-0/+467
|
* Fixed a typo in ReST markup.Alexander Belopolsky2010-11-091-2/+1
|
* Issue #10335: Add tokenize.open(), detect the file encoding usingVictor Stinner2010-11-091-8/+9
| | | | tokenize.detect_encoding() and open it in read only mode.
* #10321: Add support for sending binary DATA and Message objects to smtplibR. David Murray2010-11-084-7/+40
|
* Fix typo.Georg Brandl2010-11-081-1/+1
|
* Fix latex conversion glitch in property/feature descriptions.Georg Brandl2010-11-081-42/+51
|
* Extra space caught by the post-commit-hook, aka Taggnostr :)Senthil Kumaran2010-11-081-1/+1
|
* Fix Issue 10303: a small clarification in the tutorial.Senthil Kumaran2010-11-081-2/+2
|
* Fix encode/decode method doc of str, bytes, bytearray typesVictor Stinner2010-11-071-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 Kumaran2010-11-071-5/+4
|
* Issue #10145: the float.is_integer method was undocumented.Mark Dickinson2010-11-071-4/+14
|
* Issue 10297: Add missing import in decimal example snippet.Mark Dickinson2010-11-071-0/+1
|
* Added example for str.format_map().Eric Smith2010-11-061-2/+10
|
* #10334: add a role to refer to Python source files in SVN.Georg Brandl2010-11-061-0/+13
|
* Tweak example to make clear the argument is a boolean, not any integer.Éric Araujo2010-11-061-1/+1
| | | | With Raymond’s approval.
* Fix wrapper/wrapped typo (with Raymond’s blessing)Éric Araujo2010-11-061-1/+1
|
* Fix typoÉric Araujo2010-11-061-1/+1
|
* Fix typo from r86170.Éric Araujo2010-11-061-1/+1
|
* More what's newAntoine Pitrou2010-11-051-0/+6
|
* Update 3.2 what's newAntoine Pitrou2010-11-051-6/+43
|
* Issue #10282: Add a `nntp_implementation` attribute to NNTP objects.Antoine Pitrou2010-11-051-12/+34
|
* Merge the doc for assertTrue/False, assert[Not]AlmostEqual, ↵Ezio Melotti2010-11-051-86/+28
| | | | assert[Not]RegexpMatches, rephrase a couple of paragraphs, and remove redundant doc about the msg arg.
* Move glossary entry to the right position and fix link.Georg Brandl2010-11-052-20/+22
|
* Issue #10283: Add a `group_pattern` argument to NNTP.list().Antoine Pitrou2010-11-041-8/+14
|
* Move the deprecated aliases in a new section.Ezio Melotti2010-11-041-30/+24
|
* Issue #6081: Add str.format_map. str.format_map(mapping) is similar to ↵Eric Smith2010-11-041-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 Melotti2010-11-041-32/+9
|
* Demote one warning to a note. There's no security risk here, just a note on ↵Raymond Hettinger2010-11-041-1/+1
| | | | usage and avialability.