summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix some sphinx warnings (#9)Ryan Gonzalez2017-02-112-16/+16
| | | | * Fix some deprecation warnings in Doc/conf.py * Fix an rst error in Misc/NEWS
* Support "bpo-" in Misc/NEWS (#1)Brett Cannon2017-02-101-4/+4
|
* merge 3.6Benjamin Peterson2017-02-101-5/+7
|\
| * massage English for -X descriptions a bitBenjamin Peterson2017-02-101-5/+7
| |
* | Merge issue #26355 fix from 3.6Nick Coghlan2017-02-091-0/+1
|\ \ | |/
| * Merge issue #26355 fix from Python 3.5Nick Coghlan2017-02-091-0/+1
| |\
| | * 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: Merge from 3.6Berker Peksag2017-02-071-17/+4
|\ \ \ | |/ /
| * | Issue #29441: Merge from 3.5Berker Peksag2017-02-071-17/+4
| |\ \ | | |/
| | * Issue #29441: Update examples to use async and await keywords in ↵Berker Peksag2017-02-071-17/+4
| | | | | | | | | | | | asyncio-task.rst
* | | Issue #29371: merge with 3.6Mariatta Wijaya2017-02-071-11/+13
|\ \ \ | |/ /
| * | Issue #29371: merge with 3.5Mariatta Wijaya2017-02-071-11/+13
| |\ \ | | |/
| | * Issue #29371: Clarify bitwise OR operation in doctest option flags.Mariatta Wijaya2017-02-071-11/+13
| | |
* | | mergeRaymond Hettinger2017-02-061-1/+1
|\ \ \ | |/ /
| * | Substitute a more readable f-stringRaymond Hettinger2017-02-061-1/+1
| | |
* | | Merge from 3.6Berker Peksag2017-02-061-5/+5
|\ \ \ | |/ /
| * | Fix usage of data directiveBerker Peksag2017-02-061-5/+5
| | |
* | | Issue #29198: Merge from 3.6Berker Peksag2017-02-041-2/+2
|\ \ \ | |/ /
| * | Issue #29198: Merge from 3.5Berker Peksag2017-02-041-2/+2
| |\ \ | | |/
| | * Issue #29198: Fix indentation and markup in typing.rstBerker Peksag2017-02-041-2/+2
| | | | | | | | | | | | Patch by Jelle Zijlstra.
* | | Issue #29198: Merge from 3.6Berker Peksag2017-02-041-0/+33
|\ \ \ | |/ /
| * | Issue #29198: Merge from 3.5Berker Peksag2017-02-041-0/+33
| |\ \ | | |/
| | * Issue #29198: Document typing.AsyncGeneratorBerker Peksag2017-02-041-0/+33
| | | | | | | | | | | | Patch by Jelle Zijlstra.
* | | Issue #29300: Convert _struct module to Argument ClinicVictor Stinner2017-02-021-13/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * The struct module now requires contiguous buffers. * Convert most functions and methods of the _struct module to Argument Clinic * Use "Py_buffer" type for the "buffer" argument. Argument Clinic is responsible to create and release the Py_buffer object. * Use "PyStructObject *" type for self to avoid explicit conversions. * Add an unit test on the _struct.Struct.unpack_from() method to test passing arguments as keywords. * Rephrase docstrings. * Rename "fmt" argument to "format" in docstrings and the documentation. As a side effect, functions and methods which used METH_VARARGS calling convention like struct.pack() now use the METH_FASTCALL calling convention which avoids the creation of temporary tuple to pass positional arguments and so is faster. For example, struct.pack("i", 1) becomes 1.56x faster (-36%):: $ ./python -m perf timeit \ -s 'import struct; pack=struct.pack' 'pack("i", 1)' \ --compare-to=../default-ref/python Median +- std dev: 119 ns +- 1 ns -> 76.8 ns +- 0.4 ns: 1.56x faster (-36%) Significant (t=295.91) Patch co-written with Serhiy Storchaka.
* | | Issue #29381: merge with 3.6Mariatta Wijaya2017-02-021-11/+10
|\ \ \ | |/ /
| * | Issue #29381: Clarify ordering of UNIX shebang line as source encoding lineMariatta Wijaya2017-02-021-11/+10
| | |
| * | Backed out changeset 3d712292f2faMariatta Wijaya2017-02-021-14/+15
| | |
| * | Issue #29381: Clarify ordering of UNIX shebang line as source encoding lineMariatta Wijaya2017-02-021-15/+14
| | |
* | | Issue #29407: Merge from 3.6Berker Peksag2017-02-011-8/+7
|\ \ \ | |/ /
| * | Issue #29407: Merge from 3.5Berker Peksag2017-02-011-8/+7
| |\ \ | | |/
| | * Issue #29407: Remove redundant ensure_future() calls in factorial exampleBerker Peksag2017-02-011-8/+7
| | |
* | | Issue #29377: Add three new wrappers to types.py (Manuel Krebber).Guido van Rossum2017-02-011-0/+23
| | |
* | | Issue #28822: Add susp-ignored entry for NEWS; fix grammarMartin Panter2017-01-291-0/+1
| | |
* | | Issues #11670: Merge configparser doc from 3.6Martin Panter2017-01-291-6/+6
|\ \ \ | |/ /
| * | Issues #11670: Merge configparser doc from 3.5Martin Panter2017-01-291-6/+6
| |\ \ | | |/
| | * Issue #11670: readfp(fp) parameter name is different to read_file(f)Martin Panter2017-01-291-6/+6
| | |
* | | Issues #29349: Merge Py 2.6+ compatibility from 3.6Martin Panter2017-01-291-0/+2
|\ \ \ | |/ /
| * | Issues #29349: Merge Py 2.6+ compatibility from 3.5Martin Panter2017-01-291-0/+2
| |\ \ | | |/
| | * Issue #29349: Use __future__ print_function; Sphinx may use Python 2.6+Martin Panter2017-01-291-0/+2
| | |
* | | Issues #29349: Add NEWS for 3.7; use “with” statementMartin Panter2017-01-291-4/+1
| | |
* | | Issues #29349: Merge Py 2 fix 3.6Martin Panter2017-01-291-2/+2
|\ \ \ | |/ /
| * | Issues #29349: Merge Py 2 fix 3.5Martin Panter2017-01-291-2/+2
| |\ \ | | |/
| | * Issue #29349: Fix Python 2 syntax in documentation build codeMartin Panter2017-01-291-2/+2
| | |
* | | Issues #12067: Merge hash recommendation from 3.6Martin Panter2017-01-291-0/+4
|\ \ \ | |/ /
| * | Issues #12067: Merge hash recommendation from 3.5Martin Panter2017-01-291-0/+4
| |\ \ | | |/
| | * Issue #12067: Recommend that hash and equality be consistentMartin Panter2017-01-291-0/+4
| | |
* | | mergeRaymond Hettinger2017-01-291-4/+18
|\ \ \ | |/ /
| * | Issue 29310: Document typing.NamedTuple default argument syntaxRaymond Hettinger2017-01-291-4/+18
| | |
* | | Closes #28784: Merged update from 3.6.Vinay Sajip2017-01-271-1/+3
|\ \ \ | |/ /
| * | Fixes #28784: Clarified use of shlex.shlex with punctuation_chars.Vinay Sajip2017-01-271-1/+3
| | |