Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Restore [] where default arguments are not keywords | Hynek Schlawack | 2012-05-22 | 4 | -4/+4 |
| | | | | | | | | Reverts some changes of a36666c52115. In the case of os's `mknod(filename[, mode=0600[, device=0]])`, I have nested the [] as setting mode doesn't require to set device (but setting device requires to set mode). | ||||
* | #14804: Remove [] around optional arguments with default values | Hynek Schlawack | 2012-05-22 | 25 | -61/+61 |
| | | | | | Mostly just mechanical removal of []. In some rare cases I've pulled the default value up into the argument list. | ||||
* | Fixes #14864: Added documentation on how to undo the effects of a ↵ | Vinay Sajip | 2012-05-20 | 1 | -1/+2 |
| | | | | logging.disable() call. | ||||
* | Document when json.load's parse_constant behaviour changed | Hynek Schlawack | 2012-05-20 | 1 | -0/+3 |
| | | | | It doesn't get called on 'null', 'true', 'false' since f686aced02a3. | ||||
* | #14494: Document that absolute imports became default in 3.0 instead of 2.7. | Petri Lehtinen | 2012-05-19 | 1 | -1/+1 |
| | |||||
* | Fix time.time() references in the time module docs | Petri Lehtinen | 2012-05-18 | 1 | -6/+6 |
| | | | | Closes #14842. | ||||
* | #14823: Simplify threading.Lock.acquire argument discussion. | R David Murray | 2012-05-17 | 1 | -8/+5 |
| | |||||
* | #14692 Fix json docs to reflect changes in json.load | Hynek Schlawack | 2012-05-16 | 1 | -2/+2 |
| | | | | | | | The behaviour of the parse_constant callback changed insofar that 'null', 'true', 'false' don't trigger its call anymore. Patch by Serhiy Storchaka | ||||
* | #1440472: reflow | R David Murray | 2012-05-16 | 1 | -4/+3 |
| | |||||
* | #1440472: Explain that email parser/generator isn't *quite* "idempotent" | R David Murray | 2012-05-16 | 1 | -1/+10 |
| | |||||
* | #14766: Reflow the altered paragraphs. | R David Murray | 2012-05-15 | 1 | -18/+18 |
| | |||||
* | #14766: Add correct algorithm for when a 'time' object is naive. | R David Murray | 2012-05-15 | 1 | -10/+25 |
| | | | | | | | This patch also clarifies the definition of Naive and Aware. Original patch by Greg Weller, I modified the first hunk somewhat to make the exposition even clearer (I hope). | ||||
* | correctly define what 'fill' could be; thanks to Leland Hulbert from docs@ | Sandro Tosi | 2012-05-12 | 1 | -1/+1 |
| | |||||
* | Additional example of using decimal.localcontext(). | Raymond Hettinger | 2012-05-11 | 1 | -0/+4 |
| | |||||
* | #14763: document default maxsplit value for str.split. | Ezio Melotti | 2012-05-10 | 1 | -2/+2 |
| | |||||
* | #14763: fix documentation for string.split/rsplit. | Ezio Melotti | 2012-05-09 | 1 | -7/+8 |
| | |||||
* | Improve the grammar of a non-sentence. | R David Murray | 2012-05-09 | 1 | -2/+2 |
| | |||||
* | backport 7a05cb3beddf to 2.7 | Sandro Tosi | 2012-05-07 | 1 | -6/+19 |
| | |||||
* | #14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe. | Ezio Melotti | 2012-05-06 | 1 | -0/+6 |
| | |||||
* | Use Python 3 instead of 3.0. | Ezio Melotti | 2012-05-03 | 69 | -115/+115 |
| | |||||
* | Issue #10433: Document unique behavior of 'os.getgroups' on Mac OS X. | Ned Deily | 2012-04-30 | 1 | -0/+18 |
| | |||||
* | #14558: document the module, argv, and testLoader args of unittest.main. | Ezio Melotti | 2012-04-30 | 1 | -6/+14 |
| | |||||
* | #14519: fix the regex used in the scanf example. | Ezio Melotti | 2012-04-29 | 1 | -2/+2 |
| | |||||
* | Fix markup in unittest doc. | Ezio Melotti | 2012-04-29 | 1 | -2/+2 |
| | |||||
* | Fix issue6085 - Remove the delay caused by fqdn lookup while logging in ↵ | Senthil Kumaran | 2012-04-29 | 1 | -1/+1 |
| | | | | BaseHTTPRequestHandler | ||||
* | #14461: fix wording. | Ezio Melotti | 2012-04-29 | 1 | -1/+1 |
| | |||||
* | issue14427 - Document Request.get_header and Request.header_items | Senthil Kumaran | 2012-04-29 | 1 | -0/+11 |
| | |||||
* | #14155: add a note about \b. | Ezio Melotti | 2012-04-29 | 1 | -0/+3 |
| | |||||
* | refer to file.readline() in stdtypes doc; thanks to Mihai Capotă from docs@ | Sandro Tosi | 2012-04-28 | 1 | -3/+3 |
| | |||||
* | Issue #14676: DeprecationWarning is ignored too; patch by Peter Eisentraut | Sandro Tosi | 2012-04-28 | 1 | -1/+2 |
| | |||||
* | Issue #14448: add reference to IANA timezone database; thanks to Georg/Nick ↵ | Sandro Tosi | 2012-04-28 | 1 | -5/+12 |
| | | | | suggestions | ||||
* | Make the example cut and pasteable. | Raymond Hettinger | 2012-04-27 | 1 | -3/+3 |
| | |||||
* | fix footnote reference; thanks to Fizz from docs@ | Sandro Tosi | 2012-04-25 | 1 | -1/+1 |
| | |||||
* | Issue #14448: mention pytz; patch by Andrew Svetlov | Sandro Tosi | 2012-04-24 | 1 | -0/+8 |
| | |||||
* | Issue #14554: correct example for captured_stdout() | Sandro Tosi | 2012-04-24 | 1 | -1/+1 |
| | |||||
* | Issue #13478: document timeit.default_timer() | Sandro Tosi | 2012-04-24 | 1 | -8/+14 |
| | |||||
* | merge | Raymond Hettinger | 2012-04-23 | 2 | -9/+10 |
|\ | |||||
| * | Update 2.7 docs about legal characters allowed in Cookie name | Senthil Kumaran | 2012-04-22 | 1 | -2/+8 |
| | | |||||
| * | Remove webbrowser doc reference to the previously removed internet-config ↵ | Ned Deily | 2012-04-18 | 1 | -7/+2 |
| | | | | | | | | option. | ||||
* | | Minor fixups. | Raymond Hettinger | 2012-04-18 | 1 | -4/+4 |
|/ | |||||
* | Clean-up the SQLite introduction. | Raymond Hettinger | 2012-04-18 | 1 | -26/+26 |
| | |||||
* | Clarify that a new connection needs to be made after the close. | Raymond Hettinger | 2012-04-17 | 1 | -0/+6 |
| | |||||
* | #14552: remove redundant wording in 'test' docs. | R David Murray | 2012-04-12 | 1 | -4/+4 |
| | | | | Original patch by Tshepang Lekhonkhobe. | ||||
* | Fix closes Issue14258 - Clarify the re.LOCALE and re.UNICODE flags for \S ↵ | Senthil Kumaran | 2012-04-10 | 1 | -12/+12 |
| | | | | class | ||||
* | Updated logging reference and HOWTO. | Vinay Sajip | 2012-04-10 | 1 | -2/+14 |
| | |||||
* | minor .rst fix | Senthil Kumaran | 2012-04-10 | 1 | -1/+1 |
| | |||||
* | Issue #14502: release() and unlocked lock generates a ThreadError | Sandro Tosi | 2012-04-05 | 1 | -1/+1 |
| | |||||
* | Closes #14489: correct link target. | Georg Brandl | 2012-04-05 | 1 | -1/+1 |
| | |||||
* | #14481: fix formatting of example in subprocess docs. | R David Murray | 2012-04-03 | 1 | -1/+1 |
| | |||||
* | use unittest.skip; thanks to Chang Min Jeon from docs@ | Sandro Tosi | 2012-03-31 | 1 | -1/+1 |
| |