Mariatta
118cf91a31
[3.5] Fix a typo in Doc/library/functions.rst (GH-1117) (GH-1124)
...
Replace `For object's ... ` with `For objects ...`
(cherry picked from commit 873ef20d00
)
2017-04-13 16:38:17 -07:00
Serhiy Storchaka
e2cf9a9184
bpo-30021: Add examples for re.escape(). ( #1048 ) ( #1116 )
...
And fix the parameter name.
(cherry picked from commit 8fc7bc2b76
)
2017-04-13 19:41:26 +03:00
Berker Peksag
df9783720e
bpo-29791: Clarify that flush is keyword-only argument (GH-1093)
...
Reported by Lucio Ricardo Montero Valenzuela.
(cherry picked from commit 61b9ac9371
)
2017-04-13 16:16:30 +03:00
Xiang Zhang
72b1d419ac
bpo-26985: Add missing info of code object in inspect documentation (GH-1090) (GH-1100)
2017-04-13 11:37:38 +08:00
Mariatta
aa218af344
[3.5] Correct typo in configparser.rst (GH-1012) (GH-1027)
...
(cherry picked from commit 01fa9ae546
)
2017-04-09 15:16:14 -07:00
Nick Coghlan
bd18351c31
bpo-29506: Clarify deep copy note in copy module
...
The reference to administrative data was confusing to readers,
so this simplifies the note to explain that deep copying may copy
more then you intended, such as data that you expected to be
shared between copies.
(cherry picked from commit 19e0494256
)
2017-04-09 20:57:15 +10:00
Barry Warsaw
f688f180b2
Fix a minor typo. ( #1032 ) ( #1036 )
...
(cherry picked from commit dd9a0a14c8
)
2017-04-07 16:50:20 -04:00
Senthil Kumaran
0f9ceaf322
bpo-29725: DOC: add text for arraysize in sqlite3.Cursor ( #947 ) ( #986 )
...
(cherry picked from commit 02e1213800
)
2017-04-03 22:28:23 -07:00
Mariatta
eef6e11f98
bpo-29677: DOC: clarify documentation for round
(GH-877) (GH-893)
...
(cherry picked from commit 85deefcf61
)
2017-03-29 19:10:22 -07:00
Mariatta
8994f36287
bpo-29677: DOC: clarify documentation for round
(GH-357) (GH-863)
...
(cherry picked from commit 6003db7db5
)
2017-03-27 17:09:21 -07:00
INADA Naoki
d7df9e61c8
doc: minor fix for library/profile (GH-767)
...
(cherry picked from commit bd3d8ba3b2
)
2017-03-22 17:14:17 +09:00
Xiang Zhang
cb4beb6b89
fix function name in tabnanny documentation (GH-763)
2017-03-22 16:03:27 +08:00
Mariatta
7cc071c96b
bpo-29856: Fix typo in curses documentation (GH-730) (GH-732)
...
From Shifted Dxit -> Shifted Exit in Doc/library/curses.rst
(cherry picked from commit 64508780d7
)
2017-03-19 20:58:34 -07:00
Berker Peksag
41b4a2189f
bpo-16355: Clarify when inspect.getcomments() returns None ( #428 ) ( #691 )
...
Initial patch by Vajrasky Kok.
(cherry picked from commit 3f2155ffe6
)
2017-03-17 14:37:51 +03:00
Mariatta
091d90f9a4
bpo-29820: othergui.rst: Remove outdated information (GH-685) (GH-689)
...
(cherry picked from commit 1bb0f3762e
)
2017-03-16 19:57:12 -07:00
Xiang Zhang
59883bb252
ftplib.FTP.retrbinary callback gets a bytes, not a str (GH-652) (GH-658)
2017-03-13 11:06:58 +08:00
Xiang Zhang
3a8098f679
fix the name of argument to ftplib.FTP.set_pasv and fix wording (GH-653) (GH-655)
2017-03-13 10:36:54 +08:00
Serhiy Storchaka
f12f820ef8
bpo-29746: Update marshal docs to Python 3. ( #547 ) ( #630 )
...
(cherry picked from commit c611a5b1d4
)
2017-03-12 10:05:27 +02:00
Mariatta
5f63884b72
tempfile.rst: Fix some typos (GH-610) (GH-619)
...
(cherry picked from commit d3b8f98696
)
2017-03-11 10:19:37 -08:00
Xiang Zhang
ce222c8770
bpo-29770: remove outdated PYO related info (GH-590) (GH-613)
2017-03-11 14:12:29 +08:00
Mariatta
518d8fcb89
bpo-29784: Fix the reference to shutil.copy in the docs (GH-602) (GH-609)
...
(cherry picked from commit 70ee0cd5c2
)
2017-03-10 19:36:52 -08:00
Mariatta
6b7bc45e33
bpo-29557: Remove ambiguous line in binhex docs (GH-90) (GH-474)
...
"appears to not work in all cases" does not inspire confidence in this
module. I can find no context for what bug this was referencing so it
should be removed.
(cherry picked from commit 6de2b7817f
)
2017-03-06 09:31:00 -08:00
Mariatta
5789e415e8
Correct spelling "instanciate" (GH-465) (GH-468)
...
(cherry picked from commit 6abaed0dda
)
2017-03-04 15:40:36 -08:00
Brett Cannon
4d0630d9d5
bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes (GH-441)
...
(cherry picked from commit 0705f66eb3
)
2017-03-03 14:47:22 -08:00
Mariatta
6e965d9e78
bpo-29709: Improve Boolean Operations documentation ( #433 ) ( #436 )
...
(cherry picked from commit 8eb531d9db
)
2017-03-03 13:23:55 -08:00
Berker Peksag
d0620bcd4e
Add Python version since deprecation in base64 methods. ( #33 ) ( #430 )
...
Allow developers to not have to either test on N Python versions or
looked through multiple versions of the docs to know whether they can
easily update.
(cherry picked from commit c643a967dd
)
2017-03-03 18:07:01 +03:00
Mariatta
8c851fa3d3
bpo-29026: Clarify documentation of time.time (GH-34) (GH-418)
...
(cherry picked from commit 23557d59b8
)
2017-03-02 21:50:46 -08:00
Mariatta
b945e0784f
Asyncio documentation: remove self
from method signatures (GH-334) (GH-336)
...
(cherry picked from commit 091b84f23a
)
2017-02-27 06:01:59 -08:00
Mariatta
21c697fd10
bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-317)
...
(cherry picked from commit ed6795e46f
)
2017-02-26 07:44:36 -08:00
Barry Warsaw
66b5092fac
bpo-25008: Deprecate smtpd and point to aiosmtpd ( #274 ) ( #279 )
2017-02-24 16:15:17 -05:00
Arne de Laat
fa30453568
bpo-28911: Clarify the behaviour of assert_called_once_with. ( #254 )
...
(cherry picked from commit 9d56b34af2
)
2017-02-23 17:16:56 +01:00
Berker Peksag
0246422b97
bpo-28814: Undeprecate inadvertently deprecated inspect functions. ( #122 ) ( #244 )
...
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 0899b98095
)
2017-02-24 01:45:57 +10:00
Berker Peksag
6336f0d156
bpo-29554: Improve docs for pstat module and profile. ( #88 ) ( #228 )
...
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 8fb1f6e039
)
2017-02-22 04:55:03 +03:00
Mariatta
bb53a27a5d
[cherry-pick for 3.5] bpo-29481: add versionadded 3.5.4 to typing.Deque docs ( #109 )
...
(cherry picked from commit 7e147f1ddb
)
2017-02-15 11:39:37 -08:00
Mariatta
ae828714eb
bpo-29474: Improve documentation for weakref.WeakValueDictionary ( #23 )
...
There were some grammatical errors in weakref.WeakValueDictionary
documentation.
2017-02-12 08:21:36 -08:00
Berker Peksag
f59286794b
Issue #29441 : Update examples to use async and await keywords in asyncio-task.rst
2017-02-07 11:27:09 +03:00
Mariatta Wijaya
81b8977349
Issue #29371 : Clarify bitwise OR operation in doctest option flags.
2017-02-06 20:15:01 -08:00
Berker Peksag
5702fb7b4d
Issue #29198 : Fix indentation and markup in typing.rst
...
Patch by Jelle Zijlstra.
2017-02-04 09:34:16 +03:00
Berker Peksag
38962a6fe2
Issue #29198 : Document typing.AsyncGenerator
...
Patch by Jelle Zijlstra.
2017-02-04 09:18:11 +03:00
Berker Peksag
d5adb63673
Issue #29407 : Remove redundant ensure_future() calls in factorial example
2017-02-01 22:37:16 +03:00
Martin Panter
1f10671fc8
Issue #11670 : readfp(fp) parameter name is different to read_file(f)
2017-01-29 23:33:27 +00:00
Martin Panter
ef107ee7a0
Issue #29189 : Fix indentation in RST markup
2017-01-24 00:26:56 +00:00
Xiang Zhang
d7d87ca9b0
Issue #29092 : Sync os.stat's doc and docstring on path type.
2017-01-22 12:54:44 +08:00
Martin Panter
37f183d43d
Issue #29274 : tests cases → test cases
2017-01-18 12:06:38 +00:00
Raymond Hettinger
80490525e0
Issue #29011 : Fix an important omission by adding Deque to the typing module.
2017-01-16 22:42:37 -08:00
Martin Panter
8f1378366e
Avoid line breaks after hyphens, otherwise they are turned into spaces
2017-01-14 08:24:20 +00:00
Martin Panter
536d70ed33
Fix grammar, typos and markup in documentation and code comments
...
* 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
2017-01-14 08:23:08 +00:00
Serhiy Storchaka
87006a3d4a
Issue #20804 : Document the limitation of the unittest.mock.sentinel attributes.
2017-01-11 20:16:44 +02:00
Xiang Zhang
8a17995589
Issue #29217 : Fix the wrong type description of UUID.variant.
2017-01-10 11:29:27 +08:00
Berker Peksag
4950ae1491
Issue #29013 : Fix allowZip64 documentation
...
Zip files can be larger than 4 GiB if allowZip64
is true (default since Python 3.4)
2017-01-02 06:13:42 +03:00