summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Restore [] where default arguments are not keywordsHynek Schlawack2012-05-224-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 valuesHynek Schlawack2012-05-2225-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 Sajip2012-05-201-1/+2
| | | | logging.disable() call.
* Document when json.load's parse_constant behaviour changedHynek Schlawack2012-05-201-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 Lehtinen2012-05-191-1/+1
|
* Fix time.time() references in the time module docsPetri Lehtinen2012-05-181-6/+6
| | | | Closes #14842.
* #14823: Simplify threading.Lock.acquire argument discussion.R David Murray2012-05-171-8/+5
|
* #14692 Fix json docs to reflect changes in json.loadHynek Schlawack2012-05-161-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: reflowR David Murray2012-05-161-4/+3
|
* #1440472: Explain that email parser/generator isn't *quite* "idempotent"R David Murray2012-05-161-1/+10
|
* #14766: Reflow the altered paragraphs.R David Murray2012-05-151-18/+18
|
* #14766: Add correct algorithm for when a 'time' object is naive.R David Murray2012-05-151-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 Tosi2012-05-121-1/+1
|
* Additional example of using decimal.localcontext().Raymond Hettinger2012-05-111-0/+4
|
* #14763: document default maxsplit value for str.split.Ezio Melotti2012-05-101-2/+2
|
* #14763: fix documentation for string.split/rsplit.Ezio Melotti2012-05-091-7/+8
|
* Improve the grammar of a non-sentence.R David Murray2012-05-091-2/+2
|
* backport 7a05cb3beddf to 2.7Sandro Tosi2012-05-071-6/+19
|
* #14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe.Ezio Melotti2012-05-061-0/+6
|
* Use Python 3 instead of 3.0.Ezio Melotti2012-05-0369-115/+115
|
* Issue #10433: Document unique behavior of 'os.getgroups' on Mac OS X.Ned Deily2012-04-301-0/+18
|
* #14558: document the module, argv, and testLoader args of unittest.main.Ezio Melotti2012-04-301-6/+14
|
* #14519: fix the regex used in the scanf example.Ezio Melotti2012-04-291-2/+2
|
* Fix markup in unittest doc.Ezio Melotti2012-04-291-2/+2
|
* Fix issue6085 - Remove the delay caused by fqdn lookup while logging in ↵Senthil Kumaran2012-04-291-1/+1
| | | | BaseHTTPRequestHandler
* #14461: fix wording.Ezio Melotti2012-04-291-1/+1
|
* issue14427 - Document Request.get_header and Request.header_itemsSenthil Kumaran2012-04-291-0/+11
|
* #14155: add a note about \b.Ezio Melotti2012-04-291-0/+3
|
* refer to file.readline() in stdtypes doc; thanks to Mihai Capotă from docs@Sandro Tosi2012-04-281-3/+3
|
* Issue #14676: DeprecationWarning is ignored too; patch by Peter EisentrautSandro Tosi2012-04-281-1/+2
|
* Issue #14448: add reference to IANA timezone database; thanks to Georg/Nick ↵Sandro Tosi2012-04-281-5/+12
| | | | suggestions
* Make the example cut and pasteable.Raymond Hettinger2012-04-271-3/+3
|
* fix footnote reference; thanks to Fizz from docs@Sandro Tosi2012-04-251-1/+1
|
* Issue #14448: mention pytz; patch by Andrew SvetlovSandro Tosi2012-04-241-0/+8
|
* Issue #14554: correct example for captured_stdout()Sandro Tosi2012-04-241-1/+1
|
* Issue #13478: document timeit.default_timer()Sandro Tosi2012-04-241-8/+14
|
* mergeRaymond Hettinger2012-04-232-9/+10
|\
| * Update 2.7 docs about legal characters allowed in Cookie nameSenthil Kumaran2012-04-221-2/+8
| |
| * Remove webbrowser doc reference to the previously removed internet-config ↵Ned Deily2012-04-181-7/+2
| | | | | | | | option.
* | Minor fixups.Raymond Hettinger2012-04-181-4/+4
|/
* Clean-up the SQLite introduction.Raymond Hettinger2012-04-181-26/+26
|
* Clarify that a new connection needs to be made after the close.Raymond Hettinger2012-04-171-0/+6
|
* #14552: remove redundant wording in 'test' docs.R David Murray2012-04-121-4/+4
| | | | Original patch by Tshepang Lekhonkhobe.
* Fix closes Issue14258 - Clarify the re.LOCALE and re.UNICODE flags for \S ↵Senthil Kumaran2012-04-101-12/+12
| | | | class
* Updated logging reference and HOWTO.Vinay Sajip2012-04-101-2/+14
|
* minor .rst fixSenthil Kumaran2012-04-101-1/+1
|
* Issue #14502: release() and unlocked lock generates a ThreadErrorSandro Tosi2012-04-051-1/+1
|
* Closes #14489: correct link target.Georg Brandl2012-04-051-1/+1
|
* #14481: fix formatting of example in subprocess docs.R David Murray2012-04-031-1/+1
|
* use unittest.skip; thanks to Chang Min Jeon from docs@Sandro Tosi2012-03-311-1/+1
|