Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue 1859: Doc that textwrap does not break on \n (pending possible ↵ | Terry Reedy | 2010-11-23 | 1 | -0/+7 |
| | | | | behavior patch). Patch by Jeremy Thurgood. | ||||
* | #10511: clarification of what heaps are; suggested by Johannes Hoff. | Georg Brandl | 2010-11-23 | 1 | -5/+6 |
| | |||||
* | #9424: add a DeprecationWarning for assertEquals, assertNotEquals, ↵ | Ezio Melotti | 2010-11-22 | 1 | -12/+16 |
| | | | | assertAlmostEquals, assertNotAlmostEquals, and assert_ | ||||
* | Remove unnecessary `object` base class in docs (#10366). | Éric Araujo | 2010-11-22 | 7 | -11/+11 |
| | | | | Also add a note about inheritance from `object` being default. | ||||
* | Issue #10138: Removed 'indefinitely' from the proleptic calendar description. | Alexander Belopolsky | 2010-11-22 | 1 | -1/+1 |
| | |||||
* | Issue 3292: Fixup to the Sequence docs. | Raymond Hettinger | 2010-11-21 | 1 | -1/+1 |
| | |||||
* | Issue 6722: Improve the namedtuple examples. | Raymond Hettinger | 2010-11-21 | 1 | -1/+5 |
| | |||||
* | Issue 10470: 'python -m unittest' launches test discovery by default.(If ↵ | Michael Foord | 2010-11-21 | 1 | -0/+10 |
| | | | | you need to pass options to test discovery the discover subcommand must still be specified explicitly.) | ||||
* | Issue #10488: Bring documentation for 'float' builtin up to date. | Mark Dickinson | 2010-11-21 | 1 | -20/+48 |
| | |||||
* | Fix issue3709 - BaseHTTPRequestHandler will buffer the headers and write ↵ | Senthil Kumaran | 2010-11-21 | 1 | -7/+14 |
| | | | | only on end_headers call. | ||||
* | Issue #10489: removed broken `__name__` support from configparser | Łukasz Langa | 2010-11-21 | 1 | -6/+1 |
| | |||||
* | Fix capitalization. | Mark Dickinson | 2010-11-21 | 1 | -2/+2 |
| | |||||
* | Add a couple of missing versionadded tags in the inspect module docs | Nick Coghlan | 2010-11-21 | 1 | -2/+4 |
| | |||||
* | Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho ↵ | Nick Coghlan | 2010-11-21 | 1 | -0/+22 |
| | | | | Eckhardt | ||||
* | Style edits in followup to r86521 (#9312) | Éric Araujo | 2010-11-21 | 1 | -2/+2 |
| | |||||
* | Issue #7770: Note the useful range of sin/cos in the decimal module examples. | Raymond Hettinger | 2010-11-21 | 1 | -0/+6 |
| | |||||
* | Clean-up the description of the range object. | Raymond Hettinger | 2010-11-21 | 1 | -6/+4 |
| | |||||
* | Document index and count as part of the Sequence ABC (#9746) | Éric Araujo | 2010-11-20 | 1 | -0/+6 |
| | |||||
* | In 3.x, bytearray is akin to bytes, not str. | Antoine Pitrou | 2010-11-20 | 1 | -1/+1 |
| | |||||
* | Issue 9732: fetch the method resolution order from the type metaclass ↵ | Michael Foord | 2010-11-20 | 1 | -20/+8 |
| | | | | directly in getattr_static | ||||
* | Issue 9732: remove use of __class__ in inspect.getattr_static and note the ↵ | Michael Foord | 2010-11-20 | 1 | -3/+5 |
| | | | | mro exception to code execution | ||||
* | Issue 9732: addition of getattr_static to the inspect module | Michael Foord | 2010-11-20 | 1 | -0/+67 |
| | |||||
* | Use correct markup for True/False/None | Ezio Melotti | 2010-11-20 | 1 | -11/+11 |
| | |||||
* | Add a few labels and links to unittest doc | Ezio Melotti | 2010-11-20 | 1 | -28/+41 |
| | |||||
* | #10455: fix typo | Ezio Melotti | 2010-11-18 | 1 | -1/+1 |
| | |||||
* | Issue 7828: Fixed chr() and ord() documentation for wide characters | Alexander Belopolsky | 2010-11-18 | 1 | -10/+14 |
| | |||||
* | Fix usage of :option: in the docs (#9312). | Éric Araujo | 2010-11-18 | 13 | -159/+216 |
| | | | | | | | | | | | | | | | | | :option: is used to create a link to an option of python, not to mark up any instance of any arbitrary command-line option. These were changed to ````. For modules which do have a command-line interface, lists of options have been properly marked up with the program/cmdoption directives combo. Options defined in such blocks can be linked to with :option: later in the same file, they won’t link to an option of python. Finally, the markup of command-line fragments in optparse.rst has been cleaned to use ``x`` instead of ``"x"``, keeping that latter form for actual Python strings. Patch by Eli Bendersky and Éric Araujo. | ||||
* | Remove spurious space that was breaking Vim’s reST highlighting. | Éric Araujo | 2010-11-18 | 1 | -1/+1 |
| | |||||
* | Issue 10260 | Kristján Valur Jónsson | 2010-11-18 | 1 | -0/+36 |
| | | | | Adding the wait_for() method to threading.Condition | ||||
* | Issue #10446: Several changes to module documentation generated by pydoc: | Alexander Belopolsky | 2010-11-18 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | 1. Online reference manual link is now version-specific and the 'MODULE DOCS' section renamed to 'MODULE REFERENCE'. 2. 'FILE' section is moved to the end of the file. 3. Special names processed by pydoc such as __version__ or __credits__ are now excluded from the DATA section. 4. Defined __all__ to prevent pydoc from exposing undocumented details about itself. 5. Removed Python 2.3 compatibility code. | ||||
* | Issue #10443: Add the SSLContext.set_default_verify_paths() method. | Antoine Pitrou | 2010-11-17 | 1 | -0/+9 |
| | |||||
* | Issue #10440: Support RUSAGE_THREAD as a constant in the resource module. | Antoine Pitrou | 2010-11-17 | 1 | -4/+11 |
| | | | | Patch by Robert Collins. | ||||
* | Provide links to Python source where the code is short, readable and | Éric Araujo | 2010-11-16 | 29 | -0/+134 |
| | | | | | informative adjunct to the docs. Forward-port of Raymond's r86225 and r86245 using the new source reST role added in #10334. | ||||
* | 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 |
| |