summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* Asyncio documentation: remove `self` from method signatures (GH-334) (GH-336)Mariatta2017-02-271-3/+3
| | | (cherry picked from commit 091b84f23a2ff57e8320ebf6fdf889af39096ab9)
* bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-317)Mariatta2017-02-261-0/+6
| | | (cherry picked from commit ed6795e46f7653e23b862efad240a93453e7df97)
* bpo-29648: import.rst: Add reference to create_module() (GH-290) (GH-315)Mariatta2017-02-261-1/+1
| | | (cherry picked from commit 46ce7599af82a929506baeaaee5c149970440c4c)
* [3.5] Fix small typos in introduction and datastructures of tutorial ↵Mariatta2017-02-262-29/+32
| | | | | | | (GH-272) (GH-299) (cherry picked from commit 5bd5b9d81322d2cb6edd5f3804a347f8b2e65a15) (cherry picked from commit 8c5e190d360b9f1a08c9fff249ae80d9c18007d5) (cherry picked from commit 53c1892dc3de1de612b1cf95dc7bf09f82c1babf)
* bpo-25008: Deprecate smtpd and point to aiosmtpd (#274) (#279)Barry Warsaw2017-02-241-0/+6
|
* bpo-28911: Clarify the behaviour of assert_called_once_with. (#254)Arne de Laat2017-02-231-5/+6
| | | (cherry picked from commit 9d56b34af2efc4e266bf3ae62da5cd2e422a42be)
* bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) (#244)Berker Peksag2017-02-232-13/+10
| | | | | | | | | | | | | | | | Nick Coghlan said on bpo-28814: > inspect.getargvalues() and inspect.formatargvalues() were deprecated > in Python 3.5 as part of implementing bpo-20438 > This is incorrect, as these are *frame* introspection related functions, > not callable introspection ones. The documentation and implementation > layout is confusing though, as they're interleaved with the callable > introspection operation This commit undeprecates these functions and adds a note to ignore previous deprecation notices. (cherry picked from commit 0899b9809547ec2894dcf88cf4bba732c5d47d0d)
* bpo-29554: Improve docs for pstat module and profile. (#88) (#228)Berker Peksag2017-02-221-3/+4
| | | | | | | | Clarify that methods take a string which is interpreted as a regex, not a regex object. Also clarify what the old `-1`, `0`, `1` and `2` options were. (cherry picked from commit 8fb1f6e039cbdeb333d83b7a62f0f37af4ce6e02)
* doc: fix compile error on "shoddy" example extension (GH-217)INADA Naoki2017-02-212-1/+2
| | | (cherry picked from commit fb8fe72fc593438f6a0b934c6ff2d9c4aa28673d)
* Change some mercurial/ hg.python.org references. (#8) (#184)Senthil Kumaran2017-02-201-3/+3
| | | (cherry picked from commit b2ee40ed9c9041dcff9c898aa19aacf9ec60308a)
* bpo-29520: doc: fix deprecation warning from 'defindex' template (GH-179)INADA Naoki2017-02-201-2/+9
|
* Backport35 doc fixes: PR#68 and PR#124 (#125) (#126)Victor Stinner2017-02-162-3/+3
| | | | | | | | | | | | | | | | | | | | | | | * Travis CI: run rstlint.py in the docs job (#68) Currently, http://buildbot.python.org/all/buildslaves/ware-docs buildbot is only run as post-commit. For example, bpo-29521 (PR#41) introduced two warnings, unnotified by the Travis CI docs job. Modify the docs job to run toosl/rstlint.py. Fix also the two minor warnings which causes the buildbot slave to fail. (cherry picked from commit 2b501866ed493758e4c4b29f0ce9b24023d910a1) * Doc/Makefile: set PYTHON to python3 (#124) rstlint.py run by "make check" doesn't support Python 2. "make venv" runs "$(PYTHON) -m venv", whereas Python 2 doens't provide the venv module: it's a module of Python 3 standard library. (cherry picked from commit 91b0e7d0ca7c59df28f6a6fc1e8eb86a3925b76c) (cherry picked from commit b300c660d34d2027d443098ea605a8e0eb51d383)
* [cherry-pick for 3.5] bpo-29481: add versionadded 3.5.4 to typing.Deque docs ↵Mariatta2017-02-151-0/+2
| | | | | | | (#109) (cherry picked from commit 7e147f1ddb8233964ff0981e6b64fc12edac99aa)
* bpo-29521 Fix two minor documentation build warnings (#41) (#84)Mariatta2017-02-142-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | Much of bpo-29521 was fixed in parallel with commit e7ffb99 . This cleans up the rest. Apply parallel change to Doc/make.bat to read "set SPHINXOPTS=-D latex_elements.papersize=" I don't have a Windows system on which to observe the warning, but it should be necessary. The warning: .../workspace/cpython_github/Doc/faq/windows.rst:303: WARNING: unknown option: -t In the Windows FAQ, `How do I keep editors from inserting tabs into my Python source?`, contained a reference to a Python -t option. In Python 2.x, this caused Python to issue warnings about lines with mixed spaces and tabs, but as of Python 3.6 it does nothing. Per discussion at http://bugs.python.org/issue29387, take their wording. Python [3] raises an IndentationError or TabError. Tabnanny is now a module. (cherry picked from commit 3d707be950b387552585451071928e7b39cdfa53)
* Fix some sphinx warnings (#9) (#82)Mariatta2017-02-142-16/+16
| | | | | | | | * Fix some deprecation warnings in Doc/conf.py * Fix an rst error in Misc/NEWS Contributed by Ryan Gonzalez @kirbyfan64 (cherry picked from commit e7ffb99f842ebff97cffa0fc90b18be4e5abecf2)
* Support "bpo-" in Misc/NEWS (#1) (#43)Mariatta2017-02-131-4/+4
| | | | | | | Change the url to 3.5 (cherry picked from commit 79ab8be05fb4ffb5c258d2ca49be5fc2d4880431) Contributed by Brett Cannon
* [backport to 3.5] bpo-28929: Link the documentation to its source file on ↵Mariatta2017-02-121-2/+5
| | | | | | | | | | | | | GitHub (#36) * bpo-28929: Link the documentation to its source file on GitHub Change the documentation's `Show Source` link on the left menu to GitHub source file. (cherry picked from commit 23bafa294c75c20cb85ae5d97d7571a3a0ad8dd3) * remove if statement
* bpo-29474: Improve documentation for weakref.WeakValueDictionary (#23)Mariatta2017-02-121-5/+5
| | | | There were some grammatical errors in weakref.WeakValueDictionary documentation.
* Issue #26355: Specify canonical URLs in docs pagesNick Coghlan2017-02-091-0/+1
| | | | | | | Add canonical header link on each page to corresponding major version of the documentation. Patch by Matthias Bussonnier.
* Issue #29441: Update examples to use async and await keywords in ↵Berker Peksag2017-02-071-17/+4
| | | | asyncio-task.rst
* Issue #29371: Clarify bitwise OR operation in doctest option flags.Mariatta Wijaya2017-02-071-11/+13
|
* Issue #29198: Fix indentation and markup in typing.rstBerker Peksag2017-02-041-2/+2
| | | | Patch by Jelle Zijlstra.
* Issue #29198: Document typing.AsyncGeneratorBerker Peksag2017-02-041-0/+33
| | | | Patch by Jelle Zijlstra.
* Issue #29407: Remove redundant ensure_future() calls in factorial exampleBerker Peksag2017-02-011-8/+7
|
* Issue #11670: readfp(fp) parameter name is different to read_file(f)Martin Panter2017-01-291-6/+6
|
* Issue #29349: Use __future__ print_function; Sphinx may use Python 2.6+Martin Panter2017-01-291-0/+2
|
* Issue #29349: Fix Python 2 syntax in documentation build codeMartin Panter2017-01-291-2/+2
|
* Issue #12067: Recommend that hash and equality be consistentMartin Panter2017-01-291-0/+4
|
* Issue #29189: Fix indentation in RST markupMartin Panter2017-01-242-50/+50
|
* Issue #29092: Sync os.stat's doc and docstring on path type.Xiang Zhang2017-01-221-1/+1
|
* Issue #29292: Update outdated doc of PyEval_EvalCodeEx.Xiang Zhang2017-01-201-2/+3
| | | | Patch by Ammar Askar.
* Issue #29274: tests cases → test casesMartin Panter2017-01-181-4/+4
|
* Issue #29011: Fix an important omission by adding Deque to the typing module.Raymond Hettinger2017-01-171-0/+4
|
* Avoid line breaks after hyphens, otherwise they are turned into spacesMartin Panter2017-01-1412-64/+64
|
* Fix grammar, typos and markup in documentation and code commentsMartin Panter2017-01-142-7/+7
| | | | | | * Indent versionchanged at method level, not class level * Mark up ``--help`` to avoid generating an en dash * Use forward slash in Unix command line with a dollar sign ($) prompt
* Issue #20804: Document the limitation of the unittest.mock.sentinel attributes.Serhiy Storchaka2017-01-111-0/+3
|
* Issue #15657: METH_KEYWORDS cannot be used alone in Python 3Martin Panter2017-01-111-1/+1
|
* Issue #29217: Fix the wrong type description of UUID.variant.Xiang Zhang2017-01-101-1/+1
|
* Issue #29012: Remove another outdated informationBerker Peksag2017-01-031-3/+3
| | | | Patch by Jim Fasarakis-Hilliard.
* merge 3.4Benjamin Peterson2017-01-021-1/+1
|\
| * merge 3.3Benjamin Peterson2017-01-021-1/+1
| |\
| | * ring in 2017 for PythonBenjamin Peterson2017-01-021-1/+1
| | |
* | | Issue #29013: Fix allowZip64 documentationBerker Peksag2017-01-021-1/+1
| | | | | | | | | | | | | | | Zip files can be larger than 4 GiB if allowZip64 is true (default since Python 3.4)
* | | Issue #29012: Remove outdated information about __bases__Berker Peksag2017-01-021-1/+1
| | | | | | | | | | | | Patch by Jim Fasarakis-Hilliard.
* | | Issue #29024: Add Kivy entry to GUI FAQBerker Peksag2017-01-021-0/+10
| | | | | | | | | | | | Patch by inclement.
* | | Issue #26267: Improve uuid.UUID documentationBerker Peksag2016-12-311-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | * Document how comparison of UUID objects work * Document str(uuid) returns the braceless standard form * Add a test for comparison of a UUID object with a non-UUID object Patch by Ammar Askar.
* | | Issue #29112: Fix a questionable wording in sequence doc.Xiang Zhang2016-12-301-1/+1
| | |
* | | Issue #29109: Enhance tracemalloc documentationVictor Stinner2016-12-301-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Wrong parameter name, 'group_by' instead of 'key_type' * Don't round up numbers when explaining the examples. If they exactly match what can be read in the script output, it is to easier to understand (4.8 MiB vs 4855 KiB) * Fix incorrect method link that was pointing to another module Patch written by Loic Pefferkorn.
* | | Issue #29087: Removed the documentation of non-existing UCS4 support functions.Serhiy Storchaka2016-12-281-20/+0
| | |
* | | Issue #29069: Update the default URL of PyPI serverBerker Peksag2016-12-271-1/+1
| | | | | | | | | | | | Patch by paka.