summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23356: Simplify convert_arg_line_to_args example.Berker Peksag2015-04-261-4/+1
| | | | Patch by py.user.
* fix relative link (closes #24057)Benjamin Peterson2015-04-251-2/+2
|
* remove dead *-import checking code (closes #24049)Benjamin Peterson2015-04-241-4/+0
|
* Issue #24029: Document the name binding behavior for submodule imports.Barry Warsaw2015-04-221-0/+35
|
* #15183: clarify timeit documentation to say that setup statement isn't timedAndrew Kuchling2015-04-211-0/+2
|
* recommend requests library (closes #23989)Benjamin Peterson2015-04-202-0/+10
| | | | Patch from Van Lindberg
* fix grammarBenjamin Peterson2015-04-201-1/+1
|
* Mark TarInfo.frombuf() and TarInfo.fromtarfile() as classmethods.Berker Peksag2015-04-191-3/+3
|
* Issue #15566: Document encoding and errors parameters of TarInfo.frombuf().Berker Peksag2015-04-191-1/+1
| | | | Patch by Andy Holst.
* Issue #23536: Clarified scope of fileConfig()'s API.Vinay Sajip2015-04-181-0/+12
|
* #23957: fix typo.R David Murray2015-04-141-1/+1
|
* issue9014: Include more formatting on :c:type:`PyObject` etc.Gregory P. Smith2015-04-141-3/+3
|
* issue9014: Properly document PyObject_HEAD and friends post-PEP-3123.Gregory P. Smith2015-04-141-29/+41
|
* remove trailing space :)Gregory P. Smith2015-04-141-1/+1
|
* issue22046: mention that zipfile can raise NotImplementedError on unsupportedGregory P. Smith2015-04-141-1/+5
| | | | compression algorithms.
* Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-143-3/+3
|
* Issue #23730: Document the return value of ZipFile.extractZachary Ware2015-04-131-0/+2
| | | | Patch by Stéphane Wirtel.
* Fix duplicate doc entry for SSLContext.get_ca_certs()Antoine Pitrou2015-04-131-12/+4
| | | | (closes #18147)
* Issue #17202: Add .bat to .hgeol to force them to CRLF.Zachary Ware2015-04-131-124/+124
| | | | | Using LF can a script to fail if it tries to use a label that is split across 512 byte blocks. Who knows why.
* Issue #23932: Update the tutorial section on function annotations.Zachary Ware2015-04-131-11/+10
| | | | Patch by Juti Noppornpitak.
* #17380: Document tp_init return value in extending docs.R David Murray2015-04-131-1/+2
| | | | Patch by James Powell.
* Issue #12955: Change the urlopen() examples to use context managers where ↵Berker Peksag2015-04-125-28/+38
| | | | | | appropriate. Patch by Martin Panter.
* Close #23904: fix pathlib documentation misleadingly mentioning that bytes ↵Antoine Pitrou2015-04-111-2/+2
| | | | objects are accepted in the PurePath constructor
* Issue #23912: Fix code formatting in datamodel.rst.Berker Peksag2015-04-111-3/+3
| | | | Patch by James Edwards.
* use imperativeBenjamin Peterson2015-04-111-7/+7
|
* Issue #23025: Add a mention of os.urandom to RAND_bytes and ↵Berker Peksag2015-04-101-0/+4
| | | | | | RAND_pseudo_bytes docs. Patch by Alex Gaynor.
* Fix typo in telnet docs (reported by Keith Briggs)Tim Golden2015-04-081-1/+1
|
* actually ssl3 is just completely brokenBenjamin Peterson2015-04-081-7/+7
|
* Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not ↵Berker Peksag2015-04-081-8/+16
| | | | | | available. Patch by Davin Potts.
* Added missing right bracket (reported by Daryl Klakouski)Tim Golden2015-04-061-1/+1
|
* Issue #23219: Update asyncio.wait_for() documentationVictor Stinner2015-04-031-0/+5
| | | | the wait is cancelled, the future *fut* is now also cancelled.
* document what exactly str.splitlines() splits on (closes #12855)Benjamin Peterson2015-04-011-4/+36
| | | | Patch by Martin Panter.
* Issue #23729: Improve docs for ElementTree namespace parsingRaymond Hettinger2015-03-311-8/+10
|
* #11468: improve unittest basic example. Initial patch by Florian Preinstorfer.Ezio Melotti2015-03-241-37/+28
|
* Issue 23729: Document ElementTree namespace handling and fix an omission in ↵Raymond Hettinger2015-03-221-0/+68
| | | | the XPATH predicate table.
* #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.R David Murray2015-03-221-13/+23
| | | | | | | | Some http servers will reject PUT, POST, and PATCH requests if they do not have a Content-Length header. Patch by James Rutherford, with additional cleaning up of the 'request' documentation by me.
* clarify behavior of shutil.move when destination exists (closes #22933)Benjamin Peterson2015-03-221-6/+3
| | | | Patch by Mike Short.
* #11726: Make linecache docs reflect that all files are treated the same.R David Murray2015-03-201-2/+2
| | | | | | | Being able to read non-python text files is not a purpose of linecache, but it does work and people use it. This changeset adjusts the language to make it clear that Python files are not treated uniquely, but does not go so far as to say reading non-python files is explicitly supported.
* Issue #11726: Fix linecache example in the docVictor Stinner2015-03-181-2/+2
| | | | | | | Use a Python source file (linecache.__file__) instead of /etc/passwd. Modify also linecache docstrings to clarify the linecache is written to cache Python source files, not any text files.
* Issue #11726: clarify linecache doc: linecache is written to cache PythonVictor Stinner2015-03-181-2/+5
| | | | source files, even if "it works" with other text files encoded to UTF-8.
* Issue #19428: Document that PyMarshal_ReadLongFromFile() andVictor Stinner2015-03-181-6/+15
| | | | PyMarshal_ReadShortFromFile() can fail.
* Issue #23682: Delete Python 2.2 mention from distutils documentation.Berker Peksag2015-03-171-14/+0
| | | | Patch by Thomas Kluyver.
* versionchanged for rc4 removal (closes #23679)Benjamin Peterson2015-03-161-2/+6
|
* Issue #23549: Clarify confusion in heapq doc - accessing the mininmal elementEli Bendersky2015-03-151-2/+4
| | | | | | | The current documentation only mentions heap[0] as the smallest element in the beginning, and not in any of the methods' docs. There's no method to access the minimal element without popping it, and the documentation of nsmallest is confusing because it may suggest that min() is the way to go for n==1.
* Fix minor docs markup errors.Serhiy Storchaka2015-03-142-2/+2
|
* __getslice__ certainly won't appear in the outputBenjamin Peterson2015-03-131-1/+1
|
* Make the case to only support Python 2.7 when supporting 2/3 simultaneouslyBrett Cannon2015-03-131-13/+13
|
* use the meth role for ZipFile.openBenjamin Peterson2015-03-131-1/+1
|
* Issue #23081: Document that PySequence_List also accepts iterables.Berker Peksag2015-03-131-2/+3
| | | | Patch by Lars Buitinck.
* Issue #22154: Add an example to show context management protocol support of ↵Berker Peksag2015-03-131-0/+7
| | | | | | ZipFile.open(). Patch by Mike Short.