summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Fix doc role typos in argparse.rst.Ned Deily2017-09-041-2/+2
|
* Prevent HTTPoxy attack (CVE-2016-1000110)Senthil Kumaran2016-07-311-0/+13
| | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin.
* make plural s lowercaseBenjamin Peterson2014-10-191-1/+1
|
* note xmlrpclib doesn't verify certs (yet)Benjamin Peterson2014-10-131-0/+5
|
* Issue #13540: Merge changes from 3.2Jason R. Coombs2014-08-031-19/+53
|\
| * Issue #13540: Update references to Action class to match syntax used for ↵Jason R. Coombs2014-08-031-2/+2
| | | | | | | | other classes in this file.
| * Issue #13540: Removed redundant documentation about Action instance ↵Jason R. Coombs2014-07-201-49/+26
| | | | | | | | attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524.
| * Issue #13540: Expanded argparse documents to clarify the action APIJason R. Coombs2011-12-141-19/+76
| |
| * fix versionchanged versionBenjamin Peterson2014-04-041-2/+2
| |
* | Closes #20872: dbm/gdbm/ndbm close methods are not documentedJesus Cea2014-06-251-2/+16
| |
* | Update docs to reflect resurrection of Setuptools over DistributeJason R. Coombs2014-05-131-2/+2
| |
* | Document the subprocess Popen.args attribute (issue21353)Gregory P. Smith2014-04-291-0/+6
| |
* | minor docfix (reported at docs@python.org) trace.py argument is --count not ↵Senthil Kumaran2014-04-061-2/+2
| | | | | | | | --counts
* | merge 3.2 (#21082)Benjamin Peterson2014-04-011-5/+9
|\ \ | |/
| * remove directory mode check from makedirs (closes #21082)Benjamin Peterson2014-04-011-5/+9
| |
* | improve set_tunnel docs (closes #11448)Benjamin Peterson2014-03-161-4/+18
| | | | | | | | Patch by Ryan Kelly, karl, and Nikolaus Rath.
* | Close #16665: improve documentation for hex(). Patch by Jessica McKellar.Antoine Pitrou2014-03-161-3/+13
| |
* | remove unnecessary word (closes #19060)Benjamin Peterson2014-03-131-1/+1
| | | | | | | | Patch by Anastasia Filatova.
* | Fix note markup (#16805).Éric Araujo2014-03-1210-6/+25
| | | | | | | | Patch by Tshepang Lekhonkhobe, reviewed by Georg Brandl.
* | #20030: doc that TestLoader.discover returns a TestSuite.R David Murray2014-03-111-5/+5
| | | | | | | | Patch by Lita Cho.
* | improve algorithms_* documentationBenjamin Peterson2014-03-111-6/+6
| |
* | #10197: Update get[status]output versionchanged with actual version.R David Murray2014-03-081-4/+8
| | | | | | | | | | | | | | | | | | | | | | This was perhaps on the border between a bug fix and a feature since the Python3 docs did not originally say it was unix only. However, the functions never worked anywhere but unix, and the docs were changed to say it was unix only well before the windows support was added. Unfortunately, windows support was added in 3.3.4 as well as 3.4. That leaves us in the uncomfortable position of needing the tag to say "version changed: 3.3.4" :(
* | Issue #20759: Fix some typos in the mock docs.Zachary Ware2014-02-262-3/+3
| |
* | #20628: wrap lines to < 80.R David Murray2014-02-241-34/+37
| |
* | #20628: make it clear that DictReader/Writer *fieldnames* is a Sequence.R David Murray2014-02-241-2/+6
| | | | | | | | Patch by Sean Rodman.
* | Closes #20735: remove erroneous deprecated marker from stringprep docsGeorg Brandl2014-02-241-1/+0
| |
* | do not line break referenceBenjamin Peterson2014-02-161-7/+7
| |
* | #12211: remove paragraph about NaNsAndrew Kuchling2014-02-161-3/+0
| |
* | #12211: clarify math.copysign() documentation and docstringAndrew Kuchling2014-02-161-2/+5
| |
* | #20241: use correct RFC numberAndrew Kuchling2014-02-151-1/+1
| |
* | Clarify versionchanged sentence. Closes #20497.Andrew Kuchling2014-02-151-2/+1
| |
* | #20237: make a revision pass over the XML vulnerabilities sectionAndrew Kuchling2014-02-151-38/+35
| |
* | #19890: fix typo in multiprocessing docs. Patch by Mike Short.Ezio Melotti2014-02-151-1/+1
| |
* | Include the mention of ResourceWarning being displayed by default by the ↵Senthil Kumaran2014-02-081-7/+8
| | | | | | | | | | | | test runner. Addressing #issue 20529
* | Fix empty strings to empty bytes objects.Serhiy Storchaka2014-02-065-10/+11
| |
* | Issue #20488: Update docs to say importlib is *the* implementaiton ofBrett Cannon2014-02-061-6/+8
| | | | | | | | import and not *an* implementation.
* | #14515: clarify that TemporaryDirectory's __enter__ returns the name.R David Murray2014-02-051-4/+6
| |
* | Issue #20509: Added cross-reference in documentation.Vinay Sajip2014-02-041-2/+3
| |
* | Issue #20423: fix documentation of io.StringIO's newline parameterAntoine Pitrou2014-02-021-2/+3
| |
* | Fix unfinished thought in xml overview page. Suggested by Bo Bayles on docs@.Zachary Ware2014-01-311-0/+1
| |
* | inspect.docs: Document constructors for Signature & Parameter #20442Yury Selivanov2014-01-301-2/+11
| |
* | Issue #20367: Fix behavior of concurrent.futures.as_completed() for duplicateVictor Stinner2014-01-271-1/+2
| | | | | | | | arguments. Patch by Glenn Langford.
* | Issue #20301: Mention the correct KEY_* value as the defaultZachary Ware2014-01-211-1/+1
| | | | | | | | | | for 'access' in winreg.DeleteKeyEx. Already correct in the docs function signature and docstring. Noticed by Justin Foo.
* | Issue #20222: file is no longer a builtin in 3.x.Terry Jan Reedy2014-01-211-2/+2
| |
* | put notes in a ..note sectionBenjamin Peterson2014-01-201-12/+12
| |
* | document that a new Python thread context is created in ctypes callbacks ↵Benjamin Peterson2014-01-201-1/+7
| | | | | | | | | | | | (closes #6627) Patch by Nikolaus Rath.
* | improve description of buffers argument for readv/writev (closes #17811)Benjamin Peterson2014-01-191-8/+12
| | | | | | | | Patch by Nikolaus Rath.
* | rm extra whitespaceBenjamin Peterson2014-01-181-1/+1
| |
* | link to builtin open not io.openBenjamin Peterson2014-01-181-6/+6
| |
* | describe type of Popen streams (closes #17814)Benjamin Peterson2014-01-181-8/+16
| | | | | | | | Patch more or less by Nikolaus Rath.