Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #10723: add missing builtin exceptions. | Georg Brandl | 2010-12-18 | 1 | -0/+18 |
| | |||||
* | #10728: the default for printing help is sys.stdout, not stderr. | R. David Murray | 2010-12-18 | 1 | -2/+2 |
| | |||||
* | Fix typo. | Georg Brandl | 2010-12-18 | 1 | -1/+1 |
| | |||||
* | Make this a note again. | Antoine Pitrou | 2010-12-18 | 1 | -1/+1 |
| | |||||
* | Add subparser aliases for argparse. Resolves issue 9324. Approved by Georg ↵ | Steven Bethard | 2010-12-18 | 1 | -1/+11 |
| | | | | for beta2 on the tracker. | ||||
* | Add link to a sample solution to a common problem. | Raymond Hettinger | 2010-12-17 | 1 | -0/+3 |
| | |||||
* | 100% test coverage, better mapping protocol compatibility, some minor bugfixes | Łukasz Langa | 2010-12-17 | 1 | -16/+26 |
| | |||||
* | Issue2690: Update docs to reflect the change made by issue2690. | Daniel Stutzbach | 2010-12-17 | 1 | -2/+2 |
| | |||||
* | Issue #10711: Remove HTTP 0.9 support from http.client. The `strict` | Antoine Pitrou | 2010-12-17 | 1 | -7/+16 |
| | | | | parameter to HTTPConnection and friends is deprecated. | ||||
* | #10454: clarify the compileall docs and help messages. | R. David Murray | 2010-12-17 | 1 | -32/+63 |
| | |||||
* | configparser API cleanup: default values now sensible, slightly incompatible. | Łukasz Langa | 2010-12-17 | 1 | -38/+89 |
| | | | | | Backwards compatible alternative values possible as documented. Done by Łukasz Langa, approved by Raymond and Fred. | ||||
* | Add missing docs and directives related to PEP 3147 and byte-compilation | Éric Araujo | 2010-12-16 | 4 | -19/+51 |
| | |||||
* | Fix one versionchanged | Éric Araujo | 2010-12-16 | 1 | -1/+4 |
| | |||||
* | Add versionadded directive missing from r78983. | Éric Araujo | 2010-12-16 | 1 | -0/+3 |
| | |||||
* | Advertise “python -m test” over test.regrtest (r87296 followup) | Éric Araujo | 2010-12-16 | 1 | -10/+13 |
| | |||||
* | Broken ConfigParser removed, SafeConfigParser renamed to ConfigParser. | Łukasz Langa | 2010-12-16 | 1 | -60/+39 |
| | | | | Life is beatiful once again. | ||||
* | Nits | Raymond Hettinger | 2010-12-16 | 1 | -7/+7 |
| | |||||
* | Advertise “python -m” instead of direct filename. | Éric Araujo | 2010-12-16 | 1 | -3/+3 |
| | |||||
* | No need to generate a link for something that’s just above. | Éric Araujo | 2010-12-16 | 1 | -2/+1 |
| | |||||
* | Issue #8844: Regular and recursive lock acquisitions can now be interrupted | Antoine Pitrou | 2010-12-15 | 2 | -0/+7 |
| | | | | by signals on platforms using pthreads. Patch by Reid Kleckner. | ||||
* | Mark up one missed None in pkgutil.rst (#8851) | Éric Araujo | 2010-12-15 | 1 | -2/+2 |
| | |||||
* | Issue 10534, difflib: tweak doc; test new SequenceMatcher instance ↵ | Terry Reedy | 2010-12-15 | 1 | -5/+5 |
| | | | | attributes; avoid unneeded lists of SM.b2j keys and items in .__chain_b. Do not backport. | ||||
* | Use nested method directives, rewrap long lines, fix whitespace. | Éric Araujo | 2010-12-15 | 1 | -50/+56 |
| | |||||
* | Improve trace documentation (#9264). Patch by Eli Bendersky. | Éric Araujo | 2010-12-15 | 1 | -50/+119 |
| | |||||
* | Move the urllib-inherited API to a distinguished section | Antoine Pitrou | 2010-12-15 | 1 | -156/+164 |
| | |||||
* | #10705: document what the values of debuglevel are and mean. | R. David Murray | 2010-12-15 | 1 | -2/+4 |
| | |||||
* | Logging documentation update. | Vinay Sajip | 2010-12-14 | 1 | -154/+159 |
| | |||||
* | #775964: skip YP/NIS entries instead of failing the test | R. David Murray | 2010-12-14 | 1 | -1/+3 |
| | | | | | | | Also includes doc updates mentioning that these entries may not be retrievable via getgrnam and getgrgid. Patch by Bobby Impollonia. | ||||
* | Issue #6559: fix the subprocess.Popen pass_fds implementation. Add a unittest. | Gregory P. Smith | 2010-12-14 | 1 | -5/+13 |
| | | | | | | | | Issue #7213: Change the close_fds default on Windows to better match the new default on POSIX. True when possible (False if stdin/stdout/stderr are supplied). Update the documentation to reflect all of the above. | ||||
* | #1078919: make add_header automatically do RFC2231 encoding when needed. | R. David Murray | 2010-12-13 | 1 | -2/+19 |
| | | | | | Also document the use of three-tuples if control of the charset and language is desired. | ||||
* | #10698: fix typo in example. | R. David Murray | 2010-12-13 | 1 | -1/+1 |
| | |||||
* | Logging documentation update. | Vinay Sajip | 2010-12-13 | 1 | -2/+5 |
| | |||||
* | Logging documentation update. | Vinay Sajip | 2010-12-13 | 1 | -110/+128 |
| | |||||
* | Logging documentatio update. | Vinay Sajip | 2010-12-13 | 1 | -1/+2 |
| | |||||
* | Get rid of the close_fds DeprecationWarning. Changes the default on a per | Gregory P. Smith | 2010-12-13 | 1 | -8/+6 |
| | | | | | | platform basis. It remains False on Windows and changes to True on all other platforms (POSIX). Based on python-dev discussion and http://bugs.python.org/issue7213. | ||||
* | Logging documentation - further update. | Vinay Sajip | 2010-12-12 | 1 | -2/+2 |
| | |||||
* | Logging documentation - further update. | Vinay Sajip | 2010-12-12 | 1 | -4/+24 |
| | |||||
* | Logging documentation - further update. | Vinay Sajip | 2010-12-12 | 1 | -3/+4 |
| | |||||
* | Improve readability of the socket docs | Antoine Pitrou | 2010-12-12 | 1 | -57/+82 |
| | |||||
* | Homogenize the "optional OS services" menu | Antoine Pitrou | 2010-12-12 | 4 | -12/+12 |
| | |||||
* | Consistent ordering of availability statements | Antoine Pitrou | 2010-12-12 | 1 | -2/+2 |
| | |||||
* | Fix heading level | Antoine Pitrou | 2010-12-12 | 1 | -2/+2 |
| | |||||
* | Remove redundant sentence, and fix markup | Antoine Pitrou | 2010-12-12 | 1 | -7/+4 |
| | |||||
* | Add link to the buffer protocol description from the memory description. | Antoine Pitrou | 2010-12-12 | 1 | -2/+2 |
| | |||||
* | Make this a warning and fix indentation | Antoine Pitrou | 2010-12-12 | 1 | -6/+6 |
| | |||||
* | Obsolete aliases needn't be documented | Antoine Pitrou | 2010-12-12 | 1 | -4/+0 |
| | |||||
* | Remove reference to stuff which is already obsolete in 2.x. | Antoine Pitrou | 2010-12-12 | 1 | -82/+0 |
| | |||||
* | SET_LINENO was removed in 2.3 | Antoine Pitrou | 2010-12-12 | 1 | -5/+0 |
| | |||||
* | Logging documentation - further update. | Vinay Sajip | 2010-12-12 | 1 | -51/+101 |
| | |||||
* | Logging documentation - further update. | Vinay Sajip | 2010-12-12 | 1 | -0/+5 |
| |