Raymond Hettinger
0537405ec1
Add a seealso section for further reference and skill building
2016-11-21 10:52:04 -08:00
Raymond Hettinger
8ab1258b58
Simplify code in an example
2016-11-21 10:16:01 -08:00
Ethan Furman
23bb6f48ea
close issue28172: Change all example enum member names to uppercase, per Guido; patch by Chris Angelico.
2016-11-21 09:22:05 -08:00
Ethan Furman
c88c80b716
closes issue28082: doc update and NEWS entry
2016-11-21 08:29:31 -08:00
Martin Panter
8a6333dabf
Merge doc fixup from 3.5
2016-11-21 13:40:40 +00:00
Martin Panter
6a4d7629da
Fix indentation
2016-11-21 13:36:36 +00:00
Raymond Hettinger
6befb64172
Extend and improve the examples for the random module
2016-11-21 01:59:39 -08:00
Martin Panter
99b6f28351
Merge doc fixups from 3.5
2016-11-21 04:22:22 +00:00
Martin Panter
357ed2e577
Change double hyphens (en dashes) to em (longer) dashes
2016-11-21 00:15:20 +00:00
Martin Panter
cf01441315
Fix typos in documentation
2016-11-20 08:37:21 +00:00
Serhiy Storchaka
3c38e066b1
Issue #27998 : Documented bytes paths support on Windows.
2016-11-20 08:23:07 +02:00
Raymond Hettinger
a3950e42b0
Small edits to the docs for sample() and shuffle().
2016-11-17 01:49:54 -08:00
Raymond Hettinger
0a1a909fe2
Further refinements to the examples and recipes for the random module
2016-11-17 00:45:35 -08:00
Raymond Hettinger
00305ade58
Add another example to the recipes section of the random docs
2016-11-16 22:56:11 -08:00
Raymond Hettinger
2589ee3e2b
Minor touch-ups to the random module examples
2016-11-16 21:34:17 -08:00
Yury Selivanov
22214ab0af
Issue #28720 : Add collections.abc.AsyncGenerator.
2016-11-16 18:25:04 -05:00
Martin Panter
f8c25e3424
Issue #28678 : Merge parameter name from 3.5 into 3.6
2016-11-13 23:36:07 +00:00
Martin Panter
efbf20f3a3
Issue #28678 : Fix references to numeric_owner parameter
2016-11-13 23:25:06 +00:00
Serhiy Storchaka
58d3e54556
Fixed the documentation of parse_constant argument in json.load().
...
parse_constant doesn't get called on 'null', 'true', 'false' since 3.1/2.7.
2016-11-12 22:48:33 +02:00
Serhiy Storchaka
022371ff94
Fixed the documentation of parse_constant argument in json.load().
...
parse_constant doesn't get called on 'null', 'true', 'false' since 3.1/2.7.
2016-11-12 22:47:16 +02:00
Guido van Rossum
2d6c17936e
Issue 28644: Document recent changes in typing.py (Ivan L) (3.5->3.6)
2016-11-11 15:57:09 -08:00
Guido van Rossum
ae08687c3b
Issue 28644: Document recent changes in typing.py (Ivan L)
2016-11-11 15:54:04 -08:00
Yury Selivanov
3479b5f888
Issue #28635 : Fix a couple of missing/incorrect versionchanged tags
...
Patch by Elvis Pranskevichus.
2016-11-10 13:25:26 -05:00
Steve Dower
98eb360531
Issue #19717 : Makes Path.resolve() succeed on paths that do not exist (patch by Vajrasky Kok)
2016-11-09 12:58:17 -08:00
Andrew Kuchling
bafd4f2560
Merge from 3.5
2016-11-08 22:38:54 -05:00
Andrew Kuchling
58c534dd6c
Use http instead of https, due to certificate error
2016-11-08 22:33:31 -05:00
Andrew Kuchling
9a7aff521e
Merge from 3.5
2016-11-08 22:14:39 -05:00
Andrew Kuchling
d58fc8b89e
Update URL for requests documentation after IRC request
2016-11-08 22:07:43 -05:00
Yury Selivanov
91aa5c12ea
Merge 3.5 (issue #27392 )
2016-11-07 15:35:45 -05:00
Berker Peksag
9c8fb94a8d
Issue #28088 : Merge from 3.5
2016-11-07 23:36:50 +03:00
Berker Peksag
2ebd6feeae
Issue #28088 : Don't include self in method signature
...
Also update versionadded directive to 3.5.3.
2016-11-07 23:36:14 +03:00
Yury Selivanov
3b3a141a83
Issue #27392 : Document loop.connect_accepted_socket()
...
Patch by Jim Fulton.
2016-11-07 15:35:25 -05:00
INADA Naoki
4b8eb7b8b4
Issue #28088 : Document Transport.set_protocol and get_protocol.
...
Patch by Mariatta Wijaya.
2016-11-04 16:34:46 +09:00
INADA Naoki
1ea023e523
Issue #28088 : Document Transport.set_protocol and get_protocol
2016-11-04 16:33:47 +09:00
Guido van Rossum
4948a462e8
Issue #26980 : Improve docs for create_unix_connection(). By Mariatta. (3.5->3.6)
2016-11-03 14:18:04 -07:00
Guido van Rossum
9e80eeb22d
Issue #26980 : Improve docs for create_unix_connection(). By Mariatta.
2016-11-03 14:17:25 -07:00
Serhiy Storchaka
dcb9077a7c
Fixed hyperlinks for tarfile CLI options.
2016-11-02 21:05:49 +02:00
Serhiy Storchaka
72b34439bc
Fixed hyperlinks for tarfile CLI options.
2016-11-02 21:04:45 +02:00
Serhiy Storchaka
d8d9da04b7
Issue #28513 : Documented command-line interface of zipfile.
2016-11-02 12:11:32 +02:00
Serhiy Storchaka
92c1a90462
Issue #28513 : Documented command-line interface of zipfile.
2016-11-02 12:06:15 +02:00
Raymond Hettinger
16ef5d4ae1
Add cum_weights example (simulation of a cumulative binomial distribution).
2016-10-31 22:53:52 -07:00
INADA Naoki
f9cb5593e3
Issue #28553 : Fix logic error in example code of int.to_bytes doc.
2016-10-31 17:42:10 +09:00
INADA Naoki
3e3e9f3667
Issue #28553 : Fix logic error in example code of int.to_bytes doc.
2016-10-31 17:41:47 +09:00
Martin Panter
9440787867
Issue #26638 : Merge option warning fixes from 3.5 into 3.6
2016-10-30 04:21:23 +00:00
Martin Panter
b8c5f54248
Issue #26638 : Work around more CLI options that can’t be linked
...
* Cannot seem to link directly to main options from the “unittest” module,
because that module has its own set of options
* Mask out linking for options that no longer exist in Python 3
2016-10-30 04:20:23 +00:00
Martin Panter
5c67933940
Issue #26638 : Mask undefined CLI options to defeat new Sphinx warnings
2016-10-30 04:20:17 +00:00
Serhiy Storchaka
e45ef4e54c
Issue #22949 : Documented that fnmatch.translate() is for use with re.match().
2016-10-27 22:50:15 +03:00
Serhiy Storchaka
a65a474e19
Issue #22949 : Documented that fnmatch.translate() is for use with re.match().
2016-10-27 22:47:08 +03:00
Serhiy Storchaka
e0a220e9e2
Issue #22493 : Updated an example for fnmatch.translate().
2016-10-27 22:44:03 +03:00
Zachary Ware
d9aa4d3308
Merge from 3.5
2016-10-25 21:36:13 -05:00
Zachary Ware
bb444772d9
Fix default role usage
2016-10-25 21:35:22 -05:00
Guido van Rossum
5ec24314cd
Issue #28107 : Update typing module documentation for NamedTuple (Ivan)
2016-10-25 09:53:11 -07:00
Guido van Rossum
16591f440d
Issue 25002: Deprecate asyncore/asynchat. Patch by Mariatta.
2016-10-25 08:49:13 -07:00
Benjamin Peterson
802883a386
merge 3.5 ( #28525 )
2016-10-24 23:00:18 -07:00
Benjamin Peterson
bc51a8af25
fix name of keyword parameter to gc.collect() ( closes #28525 )
...
Patch from vierja.
2016-10-24 23:00:03 -07:00
Yury Selivanov
6330f2a5ce
Merge 3.5 (issue #26796 )
2016-10-21 17:41:23 -04:00
Yury Selivanov
e8a6045fea
Issue #26796 : Don't configure the number of workers for default threadpool executor.
...
Initial patch by Hans Lawrenz.
2016-10-21 17:40:42 -04:00
Brett Cannon
68adfa3b3e
Merge (issue #25152 )
2016-10-21 12:54:02 -07:00
Brett Cannon
f8c1505736
Issue #25152 : Mention the deprecation of pyvenv
2016-10-21 12:53:40 -07:00
INADA Naoki
0a421a28f8
Issue #18219 : Optimize csv.DictWriter for large number of columns.
...
Patch by Mariatta Wijaya.
2016-10-21 19:47:57 +09:00
Yury Selivanov
ea75a513df
Issue #26010 : Document CO_* constants
2016-10-20 13:06:30 -04:00
Yury Selivanov
b738a1f8a4
Issue #26010 : fix typos; rewording
2016-10-20 16:30:51 -04:00
Yury Selivanov
e20fed9182
Merge 3.5 + document CO_ASYNC_GENERATOR; issue #26010
2016-10-20 13:11:34 -04:00
Serhiy Storchaka
69d3de644b
Issue #19795 : Fixed formatting a table.
2016-10-19 19:37:44 +03:00
Serhiy Storchaka
807e2f3459
Issue #19795 : Fixed formatting a table.
2016-10-19 19:37:20 +03:00
Serhiy Storchaka
7d6dda4b78
Issue #19795 : Improved more markups of True/False.
2016-10-19 18:36:51 +03:00
Serhiy Storchaka
4adf01caae
Issue #19795 : Improved more markups of True/False.
2016-10-19 18:30:05 +03:00
Serhiy Storchaka
0bbf8c08ab
Issue #19795 : Mark up True and False as literal text instead of bold.
2016-10-19 16:44:47 +03:00
Serhiy Storchaka
a97cd2eb17
Issue #19795 : Mark up True and False as literal text instead of bold.
2016-10-19 16:43:42 +03:00
Serhiy Storchaka
989db5c880
Issue #19795 : Mark up None as literal text.
2016-10-19 16:37:13 +03:00
Serhiy Storchaka
ecf41da83e
Issue #19795 : Mark up None as literal text.
2016-10-19 16:29:26 +03:00
Benjamin Peterson
b17ba095f2
bold arguments
2016-10-18 23:14:08 -07:00
Berker Peksag
80b618bffd
Merge from 3.5
2016-10-18 00:35:09 +03:00
Berker Peksag
e5b0bd1ba2
Fix default value of StreamReader.readuntil()
...
Reported by Sam Lunt on docs@p.o.
2016-10-18 00:34:46 +03:00
Berker Peksag
066b1217af
Issue #28455 : Merge from 3.5
2016-10-17 06:14:48 +03:00
Berker Peksag
5493e4723a
Issue #28455 : Clarify example of overriding the convert_arg_line_to_args method
...
Patch by Mariatta Wijaya.
2016-10-17 06:14:17 +03:00
Ned Deily
bf7dcb9cd0
Remove spurious article.
2016-10-15 15:13:20 -04:00
Ned Deily
11194f7e0f
Remove spurious article.
2016-10-15 15:12:03 -04:00
Martin Panter
479eb760f4
Issue #27800 : Merge RE repetition doc from 3.5 into 3.6
2016-10-15 01:39:01 +00:00
Martin Panter
684340ede5
Issue #27800 : Document limitation and workaround for multiple RE repetitions
2016-10-15 01:18:16 +00:00
Martin Panter
36700e4578
Issue #23231 : Merge codecs doc from 3.5 into 3.6
2016-10-15 01:04:08 +00:00
Martin Panter
c73e9d844f
Issue #23231 : Document codecs.iterencode(), iterdecode() shortcomings
2016-10-15 00:56:47 +00:00
Senthil Kumaran
c972d1c76f
[merge from 3.5] Issue28438 - Fix the link for pkgutil.get_data doc.
...
Patch contributed by Xiang Zhang.
2016-10-13 22:59:36 -07:00
Senthil Kumaran
1cea56b597
Issue28438 - Fix the link for pkgutil.get_data doc. Patch contributed by Xiang Zhang.
2016-10-13 22:58:47 -07:00
Guido van Rossum
a0ef768ddf
Issue #18789 : Update XML vulnerability table to use Safe/Vulnerable instead of No/Yes. (3.5->3.6)
2016-10-13 14:32:33 -07:00
Guido van Rossum
e1478e4ae2
Issue #18789 : Update XML vulnerability table to use Safe/Vulnerable instead of No/Yes.
2016-10-13 14:31:50 -07:00
Guido van Rossum
5236ac600e
Issue #26869 : Document unittest.TestCase.longMessage. (Mariatta) (3.5->3.6)
2016-10-13 14:24:23 -07:00
Guido van Rossum
4a4523523e
Issue #26869 : Document unittest.TestCase.longMessage. (Mariatta)
2016-10-13 14:23:01 -07:00
Guido van Rossum
a03b1ea411
Issue #21443 : Show how to change log level for asyncio. (Merge 3.5->3.6)
2016-10-13 13:57:17 -07:00
Guido van Rossum
ba29a4fd82
Issue #21443 : Show how to change log level for asyncio.
2016-10-13 13:56:40 -07:00
Raymond Hettinger
1c3a121bb0
Issue #18844 : Fix-up examples for random.choices(). Remove over-specified test.
2016-10-12 01:42:10 -04:00
Martin Panter
b1321fba53
Issue #28394 : More typo fixes for 3.6+
2016-10-10 00:38:21 +00:00
Berker Peksag
75907bc5b5
Issue #28389 : Merge from 3.5
2016-10-09 18:18:55 +03:00
Berker Peksag
0aa7887f43
Issue #28389 : Fix ProxiedTransport example in xmlrpc.client documentation
2016-10-09 18:18:21 +03:00
Guido van Rossum
7b2aa2e87c
Adjust ClassVar example to use pre-PEP-526 syntax. (Issue #28388 )
2016-10-08 20:12:54 -07:00
Guido van Rossum
b258db9840
Issue #28388 : update typing module documentation. (merge 3.5->3.6)
2016-10-08 20:09:56 -07:00
Guido van Rossum
deed0c797c
Issue #28388 : update typing module documentation.
2016-10-08 20:06:56 -07:00
Berker Peksag
002b0a7ecd
Issue #28348 : Fix typo in asyncio.Task() documentation
...
Patch by Mariatta Wijaya.
2016-10-04 20:45:47 +03:00
Steven D'Aprano
fae2829c7a
Issue #27181 remove geometric_mean and defer for 3.7.
2016-10-05 03:24:45 +11:00
Berker Peksag
5cb63ae3ca
Issue #28348 : Merge from 3.5
2016-10-04 20:46:22 +03:00