summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* #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.
* Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-122-7/+7
| | | | Fixed 2 to 3 porting bug in pynche.ColorDB.
* asyncio doc: changes on the Queue API missed Python 3.4.3 releaseVictor Stinner2015-03-101-4/+4
|
* Issue #23432: Remove duplicate content from SystemExit docs.Berker Peksag2015-03-101-13/+13
| | | | Also, document SystemExit.code attribute explicitly.
* Issue #23605: os.walk() doc now mentions shutil.rmtree() in the last exampleVictor Stinner2015-03-101-2/+3
|
* Issue #23617: Correct plurals typo noted by Kentrell Johnson.Ned Deily2015-03-091-1/+1
|
* indicate correct version (closes #23608)Benjamin Peterson2015-03-081-1/+1
|
* replace Amazon links in the documentation (closes #23579)Benjamin Peterson2015-03-072-4/+4
| | | | Patch by Sayan Chowdhury.
* expose X509_V_FLAG_TRUSTED_FIRSTBenjamin Peterson2015-03-051-3/+11
|
* wrap everything at 80 charsBenjamin Peterson2015-03-021-98/+97
|
* link to the correct dis method or function (closes #23561)Benjamin Peterson2015-03-021-3/+3
|
* Issue #20521: Change ``TOS`` to TOS in dis documentation.Berker Peksag2015-03-021-4/+4
| | | | | | TOS is an abbreviation of top-of-stack. Patch by Sven Berkvens-Matthijsse.
* Fix the clarification as to why division cannot be ported automaticallyBrett Cannon2015-02-271-2/+3
|
* Fix copy/paste error in bytes.isupper() doc.Zachary Ware2015-02-271-2/+2
| | | | Reported by Jon Colburn on docs@.
* asyncio doc: lock classes are not thread safeVictor Stinner2015-02-261-3/+11
|
* Issue #23511: Port email-simple.py to Python 3.Berker Peksag2015-02-254-10/+10
| | | | | | Also, update email examples to use the context manager version of open(). Patch by Baptiste Mispelon.
* asyncio: add a note about (non) thread safety in each classVictor Stinner2015-02-256-0/+22
|
* asyncio doc: begin with warnings on asyncio trapsVictor Stinner2015-02-251-0/+5
|
* asyncio doc: move queues to a new pageVictor Stinner2015-02-253-166/+174
|
* Remove unsupported (in latex) character from the source.Georg Brandl2015-02-251-1/+1
|
* asyncio doc: close explicitly event loopsVictor Stinner2015-02-231-0/+2
|
* Issue #23499: Fix grammar error noticed by SilentGhostNed Deily2015-02-231-2/+2
|
* Issues #814253, #9179: Warnings now are raised when group references andSerhiy Storchaka2015-02-211-2/+5
| | | | | conditional group references are used in lookbehind assertions in regular expressions.
* Issue #23439: Add missing entries to http.client.__all__.Berker Peksag2015-02-201-0/+6
| | | | | | | Also, document the LineTooLong exception since it can be raised by the members of public API (e.g. http.client.HTTPResponse). Patch by Martin Panter.
* Fix typo pointed out on docs@ by Yaniv SayehZachary Ware2015-02-201-1/+1
|
* Fix a typo pointed out on docs@Zachary Ware2015-02-201-1/+1
|
* document the requestline and close_connection attributes, use real booleans, ↵Benjamin Peterson2015-02-181-0/+12
| | | | | | and add tests (closes #23410) Patch by Martin Panter.
* asyncio, Tulip issue 220: Update doc of asyncio.Queue, add join and task_doneVictor Stinner2015-02-171-28/+36
| | | | methods
* asyncio doc: fix the sphinx extension for coroutine commandsVictor Stinner2015-02-171-5/+0
|
* Issue #22883: Update PyInt to PyLong in C API example.Serhiy Storchaka2015-02-171-1/+1
|
* Fix typo in os.supports_effective_ids documentation.Berker Peksag2015-02-161-1/+2
|
* Issue #13637: Remove outdated versionchanged directives.Berker Peksag2015-02-141-6/+0
| | | | Patch by Martin Panter.
* asyncio doc: annotate coroutine on coroutine functions and methodsVictor Stinner2015-02-126-42/+72
|
* Amend b8ebf381390f: find patchlevel.py in extensions.Martin v. Löwis2015-02-091-1/+1
|