Julien Palard
6e240ddd0d
Doc: Missing backquotes. (GH-11982)
2019-02-22 00:22:27 -08:00
Manjusaka
e5458bdb6a
bpo-28235: Fix xml.etree.ElementTree.fromstring docs (GH-11903)
2019-02-21 19:33:57 -05:00
Raymond Hettinger
47d9987247
bpo-35904: Add statistics.fmean() (GH-11892)
2019-02-21 15:06:29 -08:00
Joe Jevnik
f36f89257b
bpo-36068: Make _tuplegetter objects serializable (GH-11981)
2019-02-21 13:00:40 -08:00
Raymond Hettinger
407c734326
bpo-36057 Update docs and tests for ordering in collections.Counter [no behavior change] ( #11962 )
...
* Add tests for Counter order. No behavior change.
* Update docs and tests
* Fix doctest output and capitalization
2019-02-21 09:19:00 -08:00
Raymond Hettinger
86f093f71a
bpo-36060: Document how collections.ChainMap() determines iteration order (GH-11969)
2019-02-21 09:12:15 -08:00
Raymond Hettinger
7463884f69
Document other performance implication for __slots__ (GH-11974)
2019-02-21 03:34:04 -08:00
Raymond Hettinger
49fd6dd887
bpo-36059: Update OrderedDict() docs to reflect that regular dicts are now ordered (GH-11966)
2019-02-21 00:05:30 -08:00
Cristian Ciupitu
11fa0e48a9
Doc: fix example for iter() function. (GH-11959)
...
read() returns bytes for a file opened in binary mode,
so b'' should be used as a sentinel instead of ''.
Otherwise the loop will be infinite.
2019-02-21 09:53:06 +02:00
Raymond Hettinger
9b0c681e2d
bpo-31982: Improve sequence of presentation in ChainMap docs (GH-11960)
...
https://bugs.python.org/issue31982
2019-02-20 13:49:23 -08:00
Stefan Behnel
d8b9e1fc2e
bpo-36012: Avoid linear slot search for non-dunder methods (GH-11907)
2019-02-20 09:29:24 -08:00
Raymond Hettinger
3bacf61265
bpo-35584: Clarify role of caret in a class class (GH-11946)
...
https://bugs.python.org/issue35584
2019-02-19 11:32:18 -08:00
Cédric Krier
beda52ed36
bpo-35153: Add headers parameter to xmlrpc.client.ServerProxy (GH-10308)
...
Allow to add HTTP headers to XML-RPC requests sent to the server.
2019-02-19 17:18:50 +01:00
Julien Palard
513e9b4425
Doc: Fix typo. (GH-11315)
...
From: https://mail.python.org/pipermail/docs/2018-December/038583.html
2019-02-19 06:46:07 -08:00
Serhiy Storchaka
e7a4bb554e
bpo-35798: Add test.support.check_syntax_warning(). ( #11895 )
...
It checks that a SyntaxWarning is raised when compile specified
statement, that it is raised only once, that it is converted to
a SyntaxError when raised as exception, and that both warning and
exception objects have corresponding attributes.
2019-02-19 08:30:15 +02:00
animalize
4a7f44a2ed
bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546)
...
Need to reset capturing groups between two SRE(match) callings in loops, this fixes wrong capturing groups in rare cases.
Also add a missing index in re.rst.
2019-02-18 15:26:37 +02:00
Raymond Hettinger
e182318e6a
bpo-33234: Add another attribution in Whatsnew (GH-11899)
...
https://bugs.python.org/issue33234
2019-02-16 12:47:48 -08:00
Raymond Hettinger
63fa1cfece
bpo-32492: Add missing whatsnew entries for itemgetter and namedtuple (GH-11897)
...
https://bugs.python.org/issue32492
2019-02-16 12:02:22 -08:00
Raymond Hettinger
3ff5962d2e
bpo-33089: Add math.dist() and math.hypot() to Whatsnew (GH-11896)
...
https://bugs.python.org/issue33089
2019-02-16 11:00:42 -08:00
Serhiy Storchaka
62e4481238
bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757)
2019-02-16 08:12:19 +02:00
Anthony Sottile
a16ab00c0b
bpo-36007: Bump minimum sphinx version to 1.8 (GH-11887)
...
https://bugs.python.org/issue36007
2019-02-15 15:41:15 -08:00
Raymond Hettinger
9abb725cea
Improve readability of random module examples (GH-11884)
...
Based on reviewer feedback from Allen Downey, convert ``lambda`` to ``def``.
2019-02-15 12:40:18 -08:00
Jack Wilsdon
903567e4f5
Fix the versionadded info for typing.NoReturn (GH-11880)
...
The earliest version that `typing.NoReturn` appears in is [3.5.4rc1](https://docs.python.org/3/whatsnew/changelog.html#python-3-5-4-release-candidate-1 )
2019-02-15 11:20:28 -08:00
Emmanuel Arias
522630a746
bpo-36006: Fix versionchanged directive alignment in io module documentation (GH-11881)
...
https://bugs.python.org/issue36006
2019-02-15 11:02:38 -08:00
Lysandros Nikolaou
5723263a3a
bpo-30410: Documentation of sys.stdin/out/err update to reflect change in 3.6 (GH-10264)
...
Documentation of sys.stdin/out/err update to reflect change in 3.6 on Windows to use UTF-8.
Wording by Eryk Sun and Paul Moore.
https://bugs.python.org/issue30410
2019-02-14 15:35:25 -08:00
Kevin Mai-Husan Chia
d73ac0eba9
Fix typo: equivalent code of async with cond (GH-11681)
2019-02-13 18:39:25 -08:00
Cheryl Sabella
5680f6546d
bpo-18283: Add support for bytes to shutil.which (GH-11818)
2019-02-13 12:25:10 +01:00
Eivind Teig
537b6caa56
bpo-22062: Updated docstring and documentation for pathlib (GH-8519)
...
Original patch by Mike Short
https://bugs.python.org/issue22062
2019-02-11 02:47:09 -08:00
Julien Palard
9db56fb8fa
Doc sidebar: 3.6 has moved to security-fix mode. (GH-11810)
2019-02-10 13:27:12 -08:00
Pablo Galindo
5033e315d2
Fix broken :ref: in asyncio docs (GH-11805)
2019-02-10 00:21:37 +00:00
Terry Jan Reedy
8a03ff2ff4
bpo-35833: Revise IDLE doc for control codes sent to Shell. (GH-11799)
...
Add a code example block.
2019-02-08 22:51:51 -05:00
Paul Ganssle
d9503c307a
Add What's New entry for date subclass behavior ( #11790 )
...
This was a backwards incompatible change and should be clearly noted.
Related bugs:
bpo-32417: https://bugs.python.org/issue32417
bpo-35364: https://bugs.python.org/issue35364
2019-02-08 17:02:00 +01:00
Pierre Glaser
df8d2cde63
bpo-35911: add cell constructor (GH-11771)
...
Add a cell constructor, expose the cell type in the types module.
2019-02-07 19:36:48 +00:00
Pablo Galindo
bc09851586
bpo-35606: Implement math.prod (GH-11359)
2019-02-06 23:04:02 -08:00
Mariatta
e9bc4172d1
Fix url to core-mentorship mailing list (GH-11775)
2019-02-06 12:45:03 -08:00
Harmandeep Singh
cd90f6a369
bpo-20001: update pathlib landing image (GH-11304)
2019-02-05 19:16:13 +09:00
Raymond Hettinger
f75d59e1a8
bpo-35884: Add variable access benchmarking script (GH-11725)
2019-02-02 22:54:56 -08:00
Stefan Krah
d08ea70464
bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). ( #11730 )
2019-02-02 18:57:41 +01:00
Cheryl Sabella
00e9c55d27
bpo-26256: Document algorithm speed for the Decimal module. ( #4808 )
2019-02-02 15:37:39 +01:00
Joannah Nanjekye
80c5dfe74b
bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH-11608)
2019-02-01 11:05:22 +01:00
Guido van Rossum
dcfcd146f8
bpo-35766: Merge typed_ast back into CPython (GH-11645)
2019-01-31 12:40:27 +01:00
Phil Jones
d97daebfa6
doc: http: Fix enum name for status code 416 (GH-11689)
2019-01-31 19:08:57 +09:00
Raymond Hettinger
0bb4bdf0d9
bpo-35864: Replace OrderedDict with regular dict in namedtuple() ( #11708 )
...
* Change from OrderedDict to a regular dict
* Add blurb
2019-01-31 00:59:50 -08:00
Inada Naoki
0897e0c597
bpo-33504: fix wrong "versionchanged" (GH-11712)
2019-01-31 17:53:48 +09:00
Michael Selik
9f3f0931cf
bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)
2019-01-31 00:47:53 -08:00
Steve Dower
a1f9a3332b
bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700)
2019-01-30 13:49:14 -08:00
Raymond Hettinger
40ebe948e9
Document differences between random.choices() and random.choice(). (GH-11703)
2019-01-30 13:30:20 -08:00
João Matos
cf991e653a
bpo-35835: Add reference to Python 3.7 new breakpoint() function in pdb documentation. (GH-11691)
2019-01-30 09:23:39 -08:00
jdemeyer
598e15d4fe
bpo-25592: Improve documentation of distutils data_files (GH-9767)
2019-01-30 16:49:39 +01:00
David H
ea446409cd
bpo-35701: Update doc for UUID weak referencing (GH-11621)
2019-01-28 10:31:19 +01:00