Berker Peksag
119d94ad37
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:17:01 +03:00
Xiang Zhang
14944c6230
bpo-26985: Add missing info of code object in inspect documentation (GH-1090) (GH-1099)
2017-04-13 11:14:17 +08:00
Mariatta
f0c416799b
[3.6] bpo-30047: Fix a typo in Doc/library/select.rst (GH-1086) (GH-1098)
...
(cherry picked from commit 3e0f1fc4e0
)
2017-04-12 20:02:21 -07:00
Mariatta
28ddd3c905
[3.6] Improvements to typing documentation (GH-967) (GH-1053)
...
Documents a few omitted classes and adds NamedTuple methods.
(cherry picked from commit 45d22c256b
)
2017-04-09 15:17:28 -07:00
Mariatta
90eb7a9ff4
[3.6] Correct typo in configparser.rst (GH-1012) (GH-1025)
...
(cherry picked from commit 01fa9ae546
)
2017-04-09 15:15:57 -07:00
Nick Coghlan
a524d63072
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:04 +10:00
Barry Warsaw
616d3eb7ef
Fix a minor typo. ( #1032 ) ( #1037 )
...
(cherry picked from commit dd9a0a14c8
)
2017-04-07 16:50:13 -04:00
Senthil Kumaran
cb1e002c07
bpo-29725: DOC: add text for arraysize in sqlite3.Cursor ( #947 ) ( #985 )
...
(cherry picked from commit 02e1213800
)
2017-04-03 22:27:15 -07:00
cocoatomo
d184c20e35
Keep the c-api exception doc up-to-date ( #966 )
...
cherry-pick'ed from ec1f5df..e3d6db3
2017-04-03 19:26:32 +03:00
Senthil Kumaran
a71a3ad54d
bpo-26947: DOC: clarify wording on hashable in glossary ( #948 ) ( #957 )
...
(cherry picked from commit 64c887ab3a
)
2017-04-01 20:00:36 -07:00
INADA Naoki
4c75fbb485
bpo-29952: Use usual terminology of dict (GH-922)
...
s/keys and elements/keys and values/
(cherry picked from commit cdcac039fb
)
2017-03-31 15:43:10 +09:00
Mariatta
7b5b1379ac
bpo-29928: Add f-string to the Glossary (GH-864) (GH-914)
...
(cherry picked from commit 33db068dac
)
2017-03-30 12:27:19 -07:00
Senthil Kumaran
da6ad2f780
bpo-29917: DOC: Remove link from PyMethodDef ( #890 ) ( #894 )
...
(cherry picked from commit c3c7ef0885
)
2017-03-29 22:29:00 -07:00
Mariatta
2609c9ee78
bpo-29677: DOC: clarify documentation for `round` (GH-877) (GH-892)
...
(cherry picked from commit 85deefcf61
)
2017-03-29 19:10:07 -07:00
Mariatta
c4021af505
bpo-16011: clarify that 'in' always returns a boolean value (GH-874)
...
(cherry picked from commit 0ae7c8bd61
)
2017-03-28 09:33:54 -07:00
Mariatta
5965062161
bpo-29677: DOC: clarify documentation for `round` (GH-357) (GH-862)
...
(cherry picked from commit 6003db7db5
)
2017-03-27 17:02:29 -07:00
Zachary Ware
abc68484b2
Treat Sphinx warnings as errors (GH-832) (GH-834)
...
* Treat Sphinx warnings as errors (GH-832)
(cherry picked from commit 334e9ec938
)
* Remove unused suspicious rules
2017-03-26 22:53:57 -05:00
Ned Deily
ceff32fb83
bpo-29888: Fix the link referring to the "Python download page" (GH-824) (GH-826)
...
(cherry picked from commit f8beb9831a
)
2017-03-26 13:58:13 -04:00
Mariatta
5dafaece67
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) (GH-810)
...
(cherry picked from commit 29540cdf6c
)
2017-03-24 20:04:40 -07:00
Brett Cannon
74bfcc314b
bpo-28810: Document remaining bytecode changes in 3.6 (GH-651) (GH-808)
...
(cherry picked from commit 8f9e1bbf2d
)
2017-03-24 14:18:53 -07:00
Mariatta
ee51327a23
Remove an outdated statement in execution model docs (GH-754) (GH-775)
...
(cherry picked from commit fad7f15606
)
2017-03-22 18:56:56 -07:00
INADA Naoki
906118d8c6
bpo-28331: fix impl-detail label is removed when content is translated. (GH-769)
...
(cherry picked from commit c351ce6a2c
)
2017-03-22 21:09:41 +09:00
INADA Naoki
c0f3e21a23
doc: minor fix for library/profile (GH-766)
...
(cherry picked from commit bd3d8ba3b2
)
2017-03-22 17:14:03 +09:00
Xiang Zhang
72c51136c6
fix function name in tabnanny documentation (GH-762)
2017-03-22 15:26:53 +08:00
Serhiy Storchaka
fcd79ada4e
Fix "NotImplentedError" typo in constants documentation ( #692 ) ( #739 )
...
`NotImplentedError` --> `NotImplementedError`
(cherry picked from commit 05f53735c8
)
2017-03-20 14:54:52 +02:00
Mariatta
d1f566f6bd
bpo-29856: Fix typo in curses documentation (GH-730) (GH-731)
...
From Shifted Dxit -> Shifted Exit in Doc/library/curses.rst
(cherry picked from commit 64508780d7
)
2017-03-19 20:55:16 -07:00
Serhiy Storchaka
69eab3123e
bpo-28749: Fixed the documentation of the mapping codec APIs. ( #487 ) ( #714 )
...
Added the documentation for PyUnicode_Translate().
(cherry picked from commit c85a26628c
)
2017-03-19 20:26:26 +02:00
Berker Peksag
948171bf99
bpo-16355: Clarify when inspect.getcomments() returns None ( #428 ) ( #690 )
...
Initial patch by Vajrasky Kok.
(cherry picked from commit 3f2155ffe6
)
2017-03-17 14:59:16 +03:00
Mariatta
3fce38c540
bpo-29820: othergui.rst: Remove outdated information (GH-685) (GH-688)
...
(cherry picked from commit 1bb0f3762e
)
2017-03-16 19:56:56 -07:00
Xiang Zhang
388e2568fc
ftplib.FTP.retrbinary callback gets a bytes, not a str (GH-652) (GH-657)
2017-03-13 11:03:36 +08:00
Xiang Zhang
7927abba34
fix the name of argument to ftplib.FTP.set_pasv and fix wording (GH-653) (GH-654)
2017-03-13 10:36:34 +08:00
Serhiy Storchaka
4652d82a51
bpo-29746: Update marshal docs to Python 3. ( #547 ) ( #631 )
...
(cherry picked from commit c611a5b1d4
)
2017-03-12 10:05:05 +02:00
Mariatta
d7a8d32ce2
tempfile.rst: Fix some typos (GH-610) (GH-618)
...
(cherry picked from commit d3b8f98696
)
2017-03-11 10:19:51 -08:00
Xiang Zhang
16416c22f9
bpo-29770: remove outdated PYO related info (GH-590) (GH-612)
2017-03-11 14:07:30 +08:00
Mariatta
701f13ab93
bpo-29784: Fix the reference to shutil.copy in the docs (GH-602) (GH-608)
...
(cherry picked from commit 70ee0cd5c2
)
2017-03-10 19:36:26 -08:00
Brett Cannon
4807fa8386
bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-607)
...
(cherry picked from commit 4b2a2a425a
)
2017-03-10 15:08:52 -08:00
Brett Cannon
68c5e4c592
bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode (GH-605)
...
(cherry picked from commit 7e52c3e7ae
)
2017-03-10 14:44:48 -08:00
Mariatta
ff6f371627
bpo-28739: Document that f-strings cannot be used as docstring (GH-592) (GH-600)
...
(cherry picked from commit d4e89287b3
)
2017-03-10 09:52:03 -08:00
Serhiy Storchaka
eb65edd102
[3.6] bpo-28231: The zipfile module now accepts path-like objects for external paths. ( #561 )
...
(cherry picked from commit 8606e9524a
)
2017-03-08 15:45:43 +02:00
Serhiy Storchaka
666165fddf
[3.6] bpo-28230: Document the pathlib support in tarfile and add tests. ( #559 )
2017-03-08 12:29:33 +02:00
Mariatta
130c4ec5fb
bpo-29557: Remove ambiguous line in binhex docs (GH-90) (GH-475)
...
"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:16 -08:00
Mariatta
e9effe6bb6
fix minor bug in pymalloc. (GH-335) (GH-476)
...
(cherry picked from commit f669ffff60
)
2017-03-06 09:15:41 -08:00
INADA Naoki
4e1a065c20
bpo-29719: Remove Date and Release field in whatsnew/3.6 (GH-500)
...
(cherry picked from commit 2225ddaa9e
)
2017-03-06 17:24:28 +09:00
Mariatta
9619ec9947
distutils docs: Fix a typo (GH-470) (GH-471)
...
(cherry picked from commit 2a7bddaab7
)
2017-03-04 16:43:57 -08:00
Mariatta
43571dde7b
Correct spelling "instanciate" (GH-465) (GH-467)
...
(cherry picked from commit 6abaed0dda
)
2017-03-04 15:40:48 -08:00
Brett Cannon
226af23e85
bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes (GH-440)
...
(cherry picked from commit 0705f66eb3
)
2017-03-03 14:47:06 -08:00
Mariatta
1936ba93c9
bpo-29709: Improve Boolean Operations documentation ( #433 ) ( #437 )
...
(cherry picked from commit 8eb531d9db
)
2017-03-03 13:24:13 -08:00
Brett Cannon
9d07aceeda
bpo-29455: Mention coverage.py in trace module documentation (GH-435)
...
(cherry picked from commit 5dfccb06dc
)
2017-03-03 12:58:17 -08:00
Berker Peksag
21ce65aa67
[3.6] bpo-29623: Make PathLike objects work with ConfigParser.read() ( #242 ) ( #432 )
...
(cherry picked from commit 85b8d01c91
)
Conflicts:
Lib/test/test_configparser.py
2017-03-03 20:48:37 +03:00
Berker Peksag
c7ff163abf
Add Python version since deprecation in base64 methods. ( #33 ) ( #429 )
...
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:18 +03:00