summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [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)
* Update URL of Mersenne Twister Home Page (#20) (#114)INADA Naoki2017-02-151-3/+3
|
* 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)
* A few README tweaks (#73) (#80)Mariatta2017-02-131-2/+11
| | | | | | | | | * Add a paragraph at the top for users, not builders, of Python. * Use nicer rst url syntax to avoid borking paragraphs in the plain text. Contributed by Ned Batchelder @nedbat (cherry picked from commit 3cdbd68ce8230cff1afb67472b96fbfa7f047e32)
* bpo-28556: Various updates to typing (#28) (#78)Mariatta2017-02-134-58/+338
| | | | | | | | | | | | | | | | | | various updates from upstream python/typing repo: - Added typing.Counter and typing.ChainMap generics - More flexible typing.NamedTuple - Improved generic ABC caching - More tests - Bugfixes - Other updates * Add Misc/NEWS entry * Add issue number Contributed by Ivan Levkivskyi @ilevkivskyi (cherry picked from commit b692dc8475a032740576129d0990ddc3edccab2b)
* 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
* bpo-29438: Fixed use-after-free in key sharing dict (#40)INADA Naoki2017-02-132-6/+6
|
* [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.
* bpo-27122: Fix comment to point to correct issue number (#50)Berker Peksag2017-02-121-1/+1
| | | | | | | | It took me quite a bit to figure out what this was referring to, since the given issue number is wrong, and the original commit message I found through git blame lists a different, also wrong issue number... see https://bugs.python.org/issue27122#msg279449 (cherry picked from commit af88e7eda4101f36e904771d3cf59a5f740b3b00)
* Fix #29519: weakref spewing exceptions during interp finalizationŁukasz Langa2017-02-102-2/+5
|
* Issue #26355: Specify canonical URLs in docs pagesNick Coghlan2017-02-093-0/+5
| | | | | | | 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 #29314: Set the stacklevel to two in asyncio.async() Deprecation WarningMariatta Wijaya2017-02-071-1/+2
|
* Issue #29371: Clarify bitwise OR operation in doctest option flags.Mariatta Wijaya2017-02-071-11/+13
|
* Includes ensurepip and venv packages in nuget package.Steve Dower2017-02-061-2/+11
|
* Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-042-2/+14
|
* Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-042-12/+51
|
* Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-043-1/+14
|
* Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-043-2/+20
| | | | the match object. Based on patch by WGH.
* Issue #27867: Silenced may-be-used-uninitialized warnings afterSerhiy Storchaka2017-02-041-2/+3
| | | | using PySlice_GetIndicesEx() in debug builds.
* 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.
* Fixes #29213: regularised EOLs of venv scripts.Vinay Sajip2017-02-022-7/+5
|
* Fixes #24875: pip can now be installed in a venv with --system-site-packages.Vinay Sajip2017-02-022-9/+25
|
* Issue #29300: test_struct tests unpack_from() with keywordsVictor Stinner2017-02-021-0/+4
| | | | | Add an unit test on the _struct.Struct.unpack_from() method to test passing arguments as keywords.
* Issue #29407: Remove redundant ensure_future() calls in factorial exampleBerker Peksag2017-02-011-8/+7
|
* Issue #29169: Fix NEWS entry.doko@ubuntu.com2017-02-011-1/+1
|
* gc types needs to be allocated as such (closes #29398)Benjamin Peterson2017-02-011-1/+1
|
* - Issue #29169: Update zlib to 1.2.10.doko@ubuntu.com2017-01-3129-1176/+2110
|
* add Modules/zlib/zlib.map to .hgeoldoko@ubuntu.com2017-01-311-0/+3
|
* 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-292-2/+7
|
* Issue #12067: Recommend that hash and equality be consistentMartin Panter2017-01-291-0/+4
|
* Fixes #29308: Respect VIRTUAL_ENV_DISABLE_PROMPT in Activate.ps1.Vinay Sajip2017-01-271-7/+9
|
* Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro ifSerhiy Storchaka2017-01-254-26/+74
| | | | | Py_LIMITED_API is not set or set to the value between 0x03050400 and 0x03060000 (not including) or 0x03060100 or higher.
* Issue #29083: Fixed the declaration of some public API functions.Serhiy Storchaka2017-01-242-5/+14
| | | | | | | PyArg_VaParse() and PyArg_VaParseTupleAndKeywords() were not available in limited API. PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and Py_BuildValue() were not available in limited API of version < 3.3 when PY_SSIZE_T_CLEAN is defined.
* Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-243-3/+9
| | | | Warnings could be emitted at compile time.
* Issue #29189: Fix indentation in RST markupMartin Panter2017-01-242-50/+50
|
* Issue #29273: Remove unneeded workaround to restore localeMartin Panter2017-01-231-11/+0
| | | | | | The “readline” module already has a workaround using setlocale(LC_CTYPE, NULL). The code in test___all__ calls getlocale(), which can subtly alter the locale string and cause the test framework to complain.
* Issue #26729: Fixed __text_signature__ for sorted().Serhiy Storchaka2017-01-231-1/+1
| | | | Patch by Erik Welch.
* Skip the test requiring ctypes if ctypes is unavailable.Gregory P. Smith2017-01-231-1/+6
| | | | prevents http://buildbot.python.org/all/builders/x86%20Ubuntu%20Shared%203.x/builds/240/steps/test/logs/stdio
* typo fix, extra '.' :)Gregory P. Smith2017-01-231-1/+1
|
* Issue #28556: Allow defining methods in NamedTuple class syntax (#362)Guido van Rossum2017-01-232-5/+31
|
* Issue #28556: various style fixes for typing.pyGuido van Rossum2017-01-232-36/+68
|
* Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-233-1/+48
| | | | exited to a stopped instead of terminated state (ex: when under ptrace).
* Issue #29290: argparse help messages won't wrap at non-breaking spaces.Xiang Zhang2017-01-223-2/+22
|
* Issue #29092: Sync os.stat's doc and docstring on path type.Xiang Zhang2017-01-221-1/+1
|