Victor Stinner
5f959c4f9e
[3.6] bpo-31900: Fix localeconv() encoding for LC_NUMERIC ( #4174 ) ( #5192 )
...
* Add _Py_GetLocaleconvNumeric() function: decode decimal_point and
thousands_sep fields of localeconv() from the LC_NUMERIC encoding,
rather than decoding from the LC_CTYPE encoding.
* Modify locale.localeconv() and "n" formatter of str.format() (for
int, float and complex to use _Py_GetLocaleconvNumeric()
internally.
(cherry picked from commit cb064fc232
)
2018-01-15 23:23:47 +01:00
Miss Islington (bot)
fb8569e36f
bpo-26330: Update shutil.disk_usage() documentation (GH-5184) (GH-5188)
...
Clarify that on Windows, path must be a directory.
On Unix, path can be a file or a directory.
(cherry picked from commit ee3b83547c
)
2018-01-15 06:32:11 -08:00
Miss Islington (bot)
bb80645d06
bpo-15221: Update os.path.is*() documentation (GH-5185) (GH-5186)
...
`os.path.is*()` can return False if the file can't be accessed.
The behaviour is documented in details in `os.path.exists()`.
Link to `os.path.exists()` from `os.path.is*()`.
(cherry picked from commit b3dd18d403
)
2018-01-14 21:44:49 -08:00
Miss Islington (bot)
cf4cd4bccb
Add itertools recipe for directly finding the n-th combination (GH-5161) ( #5174 )
...
(cherry picked from commit d37258dd2e
)
2018-01-13 11:21:15 -08:00
Miss Islington (bot)
29b1aff718
Improve enum.Flag code example (GH-5167) (GH-5171)
...
The code example that demonstrate how to use enum.Flag was missing
the import of enum.auto.
(cherry picked from commit 0f31c74fcf
)
2018-01-12 20:23:21 -08:00
Miss Islington (bot)
22b1050672
Lexical Analysis ref doc: Fix a typo in the string concatenation internal link (GH-5157) (GH-5160)
...
In lexical analysis reference documentation, the internal link to
the string literal concatenation section was written as`.. _string-catenation:`.
Changed that to `.. _string-concatenation:`.
(cherry picked from commit 3764bb075a
)
2018-01-11 22:50:45 -08:00
Miss Islington (bot)
e29573910c
advance copyright years to 2018 (GH-5094) ( #5104 )
...
(cherry picked from commit 65f2a6dcc2
)
2018-01-05 23:12:14 -08:00
Serhiy Storchaka
1e6d8525f9
bpo-32211: Document the existing bug in re.findall() and re.finditer(). ( #4695 )
2018-01-04 11:08:24 +02:00
Miss Islington (bot)
f24c1857a8
bpo-32452: clarify term 'brackets' in generator tutorial (GH-5079) ( #5081 )
...
Updates documentation for generator expressions in classes tutorial: Clarify usage of ambiguous term "brackets" by replacing with "square brackets". Updated subsequent lines to respect line breaks. (GH-5079)
(cherry picked from commit f190eb59e6
)
2018-01-02 08:36:06 -05:00
Miss Islington (bot)
45588c6dd1
Fix trivial typo in pickle.rst (GH-4955) ( #4958 )
...
(cherry picked from commit a8d25a1645
)
2017-12-21 11:11:06 +02:00
Miss Islington (bot)
4aa84e7285
bpo-32306: Clarify c.f.Executor.map() documentation (GH-4947) ( #4948 )
...
The built-in map() function collects function arguments lazily, but concurrent.futures.Executor.map() does so eagerly.
(cherry picked from commit a7a751dd7b
)
2017-12-20 19:19:18 +01:00
Miss Islington (bot)
75d1ca26b0
Improve the F-strings and format specifier documentation (GH-4931) (GH-4933)
...
Mention that the format-specifier mini language in f-strings
is the same one used by str.format.
(cherry picked from commit f4e21a2a72
)
2017-12-19 13:09:19 -08:00
Miss Islington (bot)
dc5770b161
bpo-32377: improve __del__ docs and fix mention about resurrection (GH-4927) ( #4929 )
...
* Fix GH-32377: improve __del__ docs and fix mention about resurrection
* Mention that CPython only calls __del__ once.
(cherry picked from commit 4b965930e8
)
2017-12-19 20:00:13 +01:00
Miss Islington (bot)
dab4cf210c
Minor wording tweak for itertools documentation (GH-4893) ( #4894 )
...
(cherry picked from commit 6693d7af66
)
2017-12-15 13:28:50 -08:00
Miss Islington (bot)
5a9f379435
F-strings docs: link to Format Specifiers (GH-4888) (GH-4889)
...
Link to the Format Specification Mini Language section from f-strings' documentation.
(cherry picked from commit d924fa523d
)
2017-12-15 10:11:17 -08:00
Miss Islington (bot)
77bf6da725
bpo-28393: Update encoding lookup docs wrt bpo-27938 (GH-4871) ( #4881 )
...
(cherry picked from commit 297fd876aa
)
2017-12-15 15:23:24 +01:00
Andrew Svetlov
28453feaa8
[3.6] bpo-32297: Fix misspellings in Python source code comments (GH-4803) ( #4864 )
...
* [3.6] bpo-32297: Few misspellings found in Python source code comments. (GH-4803)
* Fix multiple typos in code comments
* Add spacing in comments (test_logging.py, test_math.py)
* Fix spaces at the beginning of comments in test_logging.py.
(cherry picked from commit 53f7a7c281
)
2017-12-14 16:19:51 +02:00
Miss Islington (bot)
4a97809a38
trivial: link updates in documentation (GH-2765) ( #4835 )
...
(cherry picked from commit 4f29f3c84b
)
2017-12-13 14:45:19 +02:00
Miss Islington (bot)
b0358e8784
bpo-32284: Fix documentation of BinaryIO and TextIO (GH-4832) ( #4833 )
...
(cherry picked from commit c3e070f849
)
2017-12-13 10:59:01 +02:00
Miss Islington (bot)
78cd00b799
bpo-31942: Document optional support of start and stop attributes in Sequence.index method (GH-4277) ( #4811 )
...
(cherry picked from commit 5ce0a2a100
)
2017-12-12 11:58:26 +01:00
Miss Islington (bot)
0aa2a1d003
bpo-22671: Clarify and test default read method implementations (GH-4568) ( #4796 )
...
Original patch written by Martin Panter, enhanced by Sanyam Khurana.
(cherry picked from commit 1b74f9b77a
)
2017-12-11 15:27:25 +01:00
Vinay Sajip
63868181a9
bpo-32212: Updated logging documentation to make parameter names more consistent with source. (GH-4765) (GH-4767)
...
(cherry picked from commit a9f8df646a
)
2017-12-09 12:28:16 +00:00
Miss Islington (bot)
a04ca12e12
bpo-32208: update threading.Semaphore docs and add unit test (GH-4709) ( #4750 )
...
* fix issue32208: update threading.Semaphore docs and add unit test to validate correct behavior
* add test for blocking
* Update threading.rst
* semaphore: remove documentation validation tests and move 'return value' test to BaseSemaphore
(cherry picked from commit a0374dd34a
)
2017-12-07 20:48:35 +02:00
Miss Islington (bot)
3b55416700
Add a missing space in tkinter documentation. (GH-4692) (GH-4722)
...
(cherry picked from commit ae342cf7de
)
2017-12-04 21:16:20 -08:00
Miss Islington (bot)
2ad350a713
[3.6] bpo-31589 : Build PDF using xelatex for better UTF8 support. (GH-3940) ( #4683 )
...
Also addresses doc build failures documented in bpo-32200.
(cherry picked from commit 7324b5ce8e
)
2017-12-02 17:35:08 -05:00
Miss Islington (bot)
5f6d2bb8cf
Use raw strings in the re module examples. (GH-4616) ( #4617 )
...
(cherry picked from commit c615be5166
)
2017-11-28 23:21:09 +02:00
Miss Islington (bot)
8a957534f5
bpo-32051: Fix name shadowing in multiprocessing docs (GH-4469)
...
(cherry picked from commit c172fc5031
)
2017-11-27 04:22:50 +03:00
Miss Islington (bot)
cceb0f8d7b
bpo-29879: Update typing documentation. (GH-4573) (GH-4574)
...
- Add "version added: 3.5.2" note where it was missing.
- Remove the mention that Reversible is new in 3.5.2
(cherry picked from commit 0cd2e81bea
)
2017-11-26 14:27:44 -08:00
Miss Islington (bot)
6bce8ace76
[Doc] Update opcode for var-positional arguments (GH-4446) ( #4457 )
...
`BUILD_MAP_UNPACK_WITH_CALL` was duplicated as the opcode for both var-positional and var-keyword arguments. The opcode for the former was updated as `BUILD_TUPLE_UNPACK_WITH_CALL`.
(cherry picked from commit 0c71653cb8
)
2017-11-25 17:57:41 +02:00
Miss Islington (bot)
db897b1961
Improve Scheduler Objects documentation. (GH-4556) (GH-4557)
...
Mention that the lower the priority number, the higher priority it represents.
(cherry picked from commit 9d5ec808de
)
2017-11-24 21:48:26 -08:00
Miss Islington (bot)
3e60747025
bpo-30004: Fix the code example of using group in Regex Howto Docs (GH-4443) (GH-4554)
...
The provided code example was supposed to find repeated words, however it returned false results.
(cherry picked from commit 610e5afdcb
)
2017-11-24 21:03:04 -08:00
Miss Islington (bot)
05ee12153f
Asyncion-Dev docs: Fix the reference to sys.excepthook (GH-4414) (GH-4549)
...
(cherry picked from commit f8802d80b3
)
2017-11-24 16:07:37 -08:00
Miss Islington (bot)
7b909a93bf
Improve the String tutorial docs (GH-4541) (GH-4545)
...
The paragraph that contains example of string literal concatenation was placed
after the section about concatenation using the '+' sign.
Moved the paragraph to the appropriate section.
(cherry picked from commit 78a5722ae9
)
2017-11-24 09:35:08 -08:00
Miss Islington (bot)
90abbee7aa
Extending Python Doc minor updates (GH-4518) (GH-4535)
...
Move footnote markers to be closer to the related terminology:
before the end of the sentence, instead of after.
(cherry picked from commit cdfe910e74
)
2017-11-24 00:55:23 -08:00
Miss Islington (bot)
ff847d1ac7
bpo-31325: Fix usage of namedtuple in RobotFileParser.parse() (GH-4529) ( #4533 )
...
(cherry picked from commit 3df02dbc8e
)
2017-11-23 15:57:58 -08:00
Berker Peksag
a645b23ffc
bpo-30456: Clarify example for duplicates in second argument of isinstance (GH-1699)
...
(cherry picked from commit 26248ef58d
)
2017-11-23 23:27:25 +03:00
Miss Islington (bot)
d7ed48c2b8
bpo-32105: add asyncio.BaseEventLoop.connect_accepted_socket versionadded to documentation. (GH-4491) ( #4493 )
...
(cherry picked from commit 431665bf19
)
2017-11-21 11:16:40 -05:00
Miss Islington (bot)
32b003aca3
Add comment and improve variable name in roundrobin() (GH-4486) ( #4487 )
...
(cherry picked from commit 337cbbace0
)
2017-11-21 00:29:34 -08:00
Miss Islington (bot)
60a376cf00
bpo-32050: Fix -x option documentation (GH-4475) ( #4477 )
...
The line number in correct when using the -x option: Py_Main() uses
ungetc() to not skip the first newline character.
(cherry picked from commit c5a2071586
)
2017-11-20 08:16:08 -08:00
Miss Islington (bot)
80baec58f5
Remove outdated .pyo reference from msilib docs (GH-4461)
...
Since f299abdafa
the remove_pyc() method no longer tries to
remove .pyo files.
(cherry picked from commit b56becb373
)
2017-11-19 13:11:48 +03:00
Miss Islington (bot)
2f1ccf5e9c
Document parameters of BaseServer.finish_request() (GH-4445)
...
(cherry picked from commit 7750bded92
)
2017-11-19 10:41:19 +03:00
Miss Islington (bot)
6cc476ace1
Fix typo in atexit documentation. (GH-4419) (GH-4425)
...
`kargs` -> `kwargs`
(cherry picked from commit d505a29a15
)
2017-11-16 09:11:41 -08:00
Jesse-Bakker
42336def77
bpo-31948: Fix broken links in msilib docs (GH-4397). (GH-4398)
...
(cherry picked from commit 3bda02222a
)
2017-11-14 16:23:35 -08:00
Miss Islington (bot)
14c1fe682f
bpo-15606: Improve the re.VERBOSE documentation. (GH-4366) ( #4394 )
...
(cherry picked from commit b0b44b4b33
)
2017-11-14 17:38:50 +02:00
xdegaye
ea5b545e38
[3.6] bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160). ( #4379 )
...
(cherry picked from commit e0582a37c8
)
2017-11-12 17:33:16 +01:00
Miss Islington (bot)
4e09deb127
The termios man page is in section 3 (GH-2450)
...
(cherry picked from commit e197a8538b
)
2017-11-11 19:57:17 +03:00
Miss Islington (bot)
98ad985afe
Remove redundant 'exc = True' line (GH-4357)
...
It can be removed after c28890fb42
(cherry picked from commit 7c9da3e5ba
)
2017-11-11 18:11:34 +03:00
Miss Islington (bot)
7abbddd88d
bpo-31824: Document default value of 'errors' parameters (GH-4328)
...
(cherry picked from commit e184cfd7bf
)
2017-11-11 02:14:00 +03:00
Miss Islington (bot)
64f10492dc
bpo-31793: Doc: Specialize smart-quotes for Japanese (GH-4006)
...
(cherry picked from commit 5a66c8a64d
)
2017-11-08 01:55:08 +09:00
Miss Islington (bot)
518c6b9786
bpo-31960: Fix asyncio.Future documentation for thread (un)safety. (GH-4319) ( #4320 )
...
(cherry picked from commit 22b1128559
)
2017-11-07 17:22:18 +01:00
Miss Islington (bot)
d9c61c2a26
bpo-31965: fix doc for multiprocessing.connection.Client and Listener (GH-4304) ( #4321 )
...
* fix doc for multiprocessing.connection.Client
The authenticate argument does not exist on either Client or Listener:
- https://github.com/python/cpython/blob/master/Lib/multiprocessing/connection.pyGH-L483 (master)
- https://github.com/python/cpython/blob/3.6/Lib/multiprocessing/connection.pyGH-L478 (3.6)
- https://github.com/python/cpython/blob/3.5/Lib/multiprocessing/connection.pyGH-L478 (3.5)
- https://github.com/python/cpython/blob/3.4/Lib/multiprocessing/connection.pyGH-L487 (3.4)
The documentation also claimed that these functions will call `current_process().auth_key`, for which I could find no evidence in the code. I rewrote the documentation to reflect the actual behavior.
Also made some small changes to vary sentence structure.
(cherry picked from commit 1e5d54cfa0
)
2017-11-07 17:20:24 +01:00
Miss Islington (bot)
e65617f65e
bpo-31950: Improve event loop policy doc (GH-4306) ( #4307 )
...
(cherry picked from commit 4135c89395
)
2017-11-07 10:34:47 +01:00
Miss Islington (bot)
5c0100aec0
bpo-31923: Fix spelling in sqlite3 docs (GH-4227)
...
(cherry picked from commit aafece7a9e
)
2017-11-05 02:11:01 +03:00
Miss Islington (bot)
f9387469e8
bpo-31678: Fix typo in PyDateTime_DELTA_GET_MICROSECONDS (GH-3869)
...
(cherry picked from commit 82cd3cede8
)
2017-11-04 13:45:51 +03:00
Miss Islington (bot)
6dbecd2cd9
bpo-18699: Corrected documentation for window.chgat in curses module (GH-1430) ( #4271 )
...
(cherry picked from commit b838cc3ff4
)
2017-11-04 10:26:44 +02:00
Berker Peksag
7891556b5c
Returning 1 from the set_progress_handler handler cancels query (GH-4120)
...
(cherry picked from commit ac03c03b30
)
2017-11-02 21:08:04 +03:00
Miss Islington (bot)
8543ce8ffd
bpo-20064: Document PyObject_Malloc() (GH-4199) ( #4203 )
...
Document the following functions:
* PyObject_Malloc()
* PyObject_Calloc()
* PyObject_Realloc()
* PyObject_Free()
Fix also PyMem_RawFree() documentation.
(cherry picked from commit ec2cbdd1df
)
2017-10-31 09:56:11 -07:00
Miss Islington (bot)
2702380870
bpo-31304: Update starmap_async documentation. (GH-4168) (GH-4177)
...
Update the kwarg in the documentation of `multiprocessing.pool.Pool.starmap_async`, from `error_back` to `error_callback` to match the source code.
(cherry picked from commit 11225753a8
)
2017-10-30 11:47:39 -07:00
Serhiy Storchaka
9ea5a3a45b
[3.6] bpo-20047: Make bytearray methods partition() and rpartition() rejecting (GH-4158) ( #4162 )
...
separators that are not bytes-like objects..
(cherry picked from commit a2314283ff
)
2017-10-29 12:24:45 +02:00
Berker Peksag
0f1973d06e
bpo-31065: Add doc about Popen.poll returning None. (GH-3169)
...
(cherry picked from commit 006617ff7d
)
2017-10-29 07:06:48 +03:00
Miss Islington (bot)
37d1d967ee
bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907)
...
(cherry picked from commit d609b0c24e
)
2017-10-27 07:47:00 +03:00
xdegaye
4b27d51222
[3.6] bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327). ( #4135 )
...
(cherry picked from commit 56d1f5ca32
)
2017-10-26 17:48:48 +02:00
Miss Islington (bot)
614ea48986
bpo-30937: Make usage of newline='' consistent in csv docs (GH-2730)
...
(cherry picked from commit 275d2d9c46
)
2017-10-26 11:38:14 +03:00
Miss Islington (bot)
858ea4354f
[3.6] bpo-31799: Make module.__spec__ more discoverable (GH-4010) ( #4021 )
...
bpo-31799: Make module.__spec__ more discoverable
(cherry picked from commit 191e313820
)
2017-10-17 15:59:21 -04:00
Miss Islington (bot)
e881302b70
[3.6] bpo-31754: Fix type of 'itemsize' in PyBuffer_FillContiguousStrides (GH-3993)
...
(cherry picked from commit 1b9e76ed3a
)
2017-10-15 10:37:07 +03:00
Serhiy Storchaka
69ed5b61e7
[3.6] bpo-31714: Improved regular expression documentation. (GH-3907). ( #3994 )
...
(cherry picked from commit cd195e2a7a
)
2017-10-14 12:17:14 +03:00
INADA Naoki
7060380d57
bpo-31672: Fix string.Template accidentally matched non-ASCII identifiers (GH-3872)
...
Pattern `[a-z]` with `IGNORECASE` flag can match to some non-ASCII characters.
Straightforward solution for this is using `IGNORECASE | ASCII` flag.
But users may subclass `Template` and override only `idpattern`. So we want to
avoid changing `Template.flags`.
So this commit uses local flag `-i` for `idpattern` and change `[a-z]` to `[a-zA-Z]`.
(cherry picked from commit b22273ec5d
)
2017-10-14 14:21:59 +09:00
Miss Islington (bot)
fdf151bbfb
[3.6] Improve test suite customization example (GH-3967)
...
Reported by John Gamboa on docs@p.o at
https://mail.python.org/pipermail/docs/2017-June/031942.html
(cherry picked from commit 9255104499
)
2017-10-13 06:54:32 +03:00
Ned Deily
86f37b5225
Exclude non-default VENVDIR in Doc builds ( #3974 ) ( #3975 )
2017-10-12 16:21:17 -04:00
Ned Deily
f8d42ea0e4
bpo-31766: restore 3.5 to docs version switchers ( #3970 )
2017-10-12 14:19:07 -04:00
Miss Islington (bot)
205dd4e14d
[3.6] bpo-31567: add or fix decorator markup in docs (GH-3959) (GH-3966)
...
(cherry picked from commit 0e61e67a57
)
2017-10-12 12:33:05 -04:00
Miss Islington (bot)
764969a4b9
[3.6] bpo-28157: Improvements for the time module documentation (GH-928)
...
* Separated functions and constants descriptions in sections.
* Added a note about the limitations of timezone constants.
* Removed redundant lists from the module docstring.
(cherry picked from commit 703ff381ff
)
2017-10-11 16:50:21 +03:00
Miss Islington (bot)
10eb14e2c5
bpo-31537: Update readline documentation example. (GH-3925) (GH-3948)
...
Change the code example from using `get_history_length` to `get_current_history_length`.
(cherry picked from commit eeb5ffd54e
)
2017-10-10 15:03:14 -07:00
Miss Islington (bot)
5f396dba1d
bpo-31720: msilib documentation, change MsiError into MSIError (GH-3914) (GH-3917)
...
(cherry picked from commit 28f713601d
)
2017-10-07 09:00:27 -07:00
Serhiy Storchaka
de5427a8f7
[3.6] bpo-30872: Update the curses docs to Python 3. (GH-2620) ( #3887 )
...
(cherry picked from commit 300dd552b1
)
2017-10-05 09:35:45 +03:00
Miss Islington (bot)
ed77fbffa5
[3.6] bpo-31667: Fix gettext related links. (GH-3860) ( #3886 )
...
* Fix incorrect links.
* Remove redundant links.
* Add signatures and index entries for gettext related
functions in the locale module.
(cherry picked from commit c02a1f4ad8
)
2017-10-04 21:06:09 +03:00
Ned Deily
598c4d1c10
Remove retired and security branches from active docs ( #3880 )
2017-10-03 23:03:52 -04:00
Ned Deily
e925c4f299
Python 3.6.3
...
-----BEGIN PGP SIGNATURE-----
iQIcBAABCgAGBQJZ0yZmAAoJEC00fqaqZUId+AkP/jmhnWRFOx8pljdbhUDqMpAh
WKtlafbAM4p9YDW1y0uB5Shb0vYoETbtwl+1bPh95ybyypFHoFUWBM3WmM3vofLp
WOASXQkVflW+aj7iuR8xa/SPGgyYahdxGAsZ50z7gRUHTn0BUj1OOdbvDSncxaRN
7O+Klv4lG3sIOhq9r/q2jqCYymehDuDioUETJkh1BAbk03lXd9j7xLsTaaJnXPxB
hGc65KxmI0ZL18yvj348O+QgKR97UgmwsebhmCsikRAi5BL1aIH+B8OjMcHeAB2b
Z0qhXZrdI2uPFiqTxAHQllR71h5T9Df9K8JQMNd/dPxZsxpn+JzddrqU6LfKCHIL
gLX/uMUOGOcPD33vm7X3Nr1dvZnb6hxpoInhkaqI22L2MxkBKAbNFzdkbN+Qx3Z2
mjccmKBlEYSbJQHcAc+QFMhouOzNFTp4zsaY62bHuBQnHvuJhll0/uw2VLhy8qTw
hz9LHJYKjAkMhjsKc8Ac0g6iwKcvmalzPLzXdDMjAn0vVY6A4UMbf1EeT4i8WP9Z
pnm3dDqTv0Rr1kyjl3v/i2nNFmrMwb07yrvXjI1sf2AuOFUzu0z6ORePex+V774z
S3x1Bq4OP1MclEVWkJkFbl/MN5lUQsSi6+wxeN+/VnEe9+qDAUAzxYNbEYCGgwFa
MDXdYCwMBkuprbbThNmV
=r7O9
-----END PGP SIGNATURE-----
Merge v3.6.3 into 3.6 branch
2017-10-03 04:42:24 -04:00
Ned Deily
2c5fed86e0
Bump to 3.6.3
2017-10-03 01:52:02 -04:00
Zachary Ware
a74ce09c73
[3.6] bpo-31423: Fix building the PDF documentation (GH-3693) (GH-3699)
...
Use prefixed macro names for the `authoraddress` function, add T2A to the font encoding in LaTeX sources to support Cyrillic characters in the PDF documentation, and replace the deprecated `font_size` config option with `pointsize`.
(cherry picked from commit da9b4cfb48
)
2017-10-02 20:28:02 -04:00
Steve Dower
564747d91b
Fix build issues in Doc/make.bat ( #3663 )
2017-10-02 20:27:33 -04:00
Miss Islington (bot)
641494ec31
bpo-31621: Fix typo in Simple Statements documentation (GH-3809) (GH-3810)
...
Replace "restriction" with "restrictions".
(cherry picked from commit 8d59aca4a9
)
2017-09-28 13:00:17 -07:00
Miss Islington (bot)
680429b133
[3.6] point to the module-level get_ident function rather than the one in _thread (GH-3782) ( #3783 )
...
(cherry picked from commit 236329ed9f
)
2017-09-26 23:17:51 -07:00
Miss Islington (bot)
26b940f762
bpo-31571: Remove duplicated info in Lexical Analysis documentation (GH-3691) (GH-3754)
...
- Remove the second mention about the `u` prefix
- Remove the second mention about numeric literals do not include a sign
(cherry picked from commit 4a2d00cb45
)
2017-09-25 16:23:33 -07:00
Miss Islington (bot)
e2a30cd35b
[3.6] bpo-27385: Clarify docstring for groupby() (GH-3738) ( #3744 )
...
(cherry picked from commit 49392c63a2
)
2017-09-25 01:41:49 -07:00
Miss Islington (bot)
73c915a5cd
[3.6] bpo-23702: Update Descriptor-HOWTO to reflect the removal of unbound methods (GH-3739) ( #3742 )
...
(cherry picked from commit 0d4497b9ca
)
2017-09-25 01:11:21 -07:00
Miss Islington (bot)
01438ed4c2
[3.6] bpo-18558: Clarify glossary entry for "Iterable" (GH-3732) ( #3741 )
...
(cherry picked from commit 0bf287b6e0
)
2017-09-25 00:57:24 -07:00
Miss Islington (bot)
d38caf68bb
[3.6] bpo-30085: Improve documentation for operator (GH-1171) ( #3736 )
...
The dunderless functions are preferred; dunder are retained for back compatilibity.
Patch by Sanket Dasgupta.
(cherry picked from commit 5b9299d8c7
)
2017-09-24 17:13:15 -04:00
Miss Islington (bot)
ce418bf822
bpo-31570: Update Email library documentation example (GH-3720) (GH-3721)
...
A `"` was missing from an `<a href>` tag.
(cherry picked from commit 8337239d79
)
2017-09-24 09:18:50 -07:00
Miss Islington (bot)
e31eca45e5
[3.6] bpo-27319, bpo-31508: Document deprecation in Treeview.selection(). (GH-3667) ( #3719 )
...
Defer removing old behavior to 3.8.
Document new feature of selection_set() and friends.
(cherry picked from commit 2fad102354
)
2017-09-24 15:03:48 +03:00
Miss Islington (bot)
018e6b9f69
bpo-31564: Update typing documentation (GH-3696) (GH-3715)
...
Mention that ``NewType`` can derive from another ``NewType``.
(cherry picked from commit 039b25d8fd
)
2017-09-23 19:46:24 -07:00
Miss Islington (bot)
5614487378
[3.6] Docs: correct hashlib.blake2 keyed hashing example (bpo-31560)
...
(cherry picked from commit aecc08ac3a
)
2017-09-23 10:27:22 -07:00
Zachary Ware
6de35849cb
[3.6] bpo-31423: Fix building the PDF documentation (GH-3693) (GH-3699)
...
Use prefixed macro names for the `authoraddress` function, add T2A to the font encoding in LaTeX sources to support Cyrillic characters in the PDF documentation, and replace the deprecated `font_size` config option with `pointsize`.
(cherry picked from commit da9b4cfb48
)
2017-09-22 13:26:19 -05:00
Miss Islington (bot)
eef49f5dd0
bpo-31351: Set return code in ensurepip when pip fails (GH-3626) (GH-3683)
...
Previously ensurepip would always report success, even if the
pip installation failed.
(cherry picked from commit 9adda0cdf8
)
* Update version changed notice for backport
2017-09-22 06:45:37 -07:00
Miss Islington (bot)
6b44ad1abd
bpo-31533: fix broken link to OpenSSL docs (GH-3674) (GH-3675)
...
(cherry picked from commit 19e4d9346d
)
2017-09-20 13:22:56 -07:00
Miss Islington (bot)
e2593aa673
bpo-31501: Operator precedence description for arithmetic operators (GH-3633) (GH-3638)
...
(cherry picked from commit 9b47af6537
)
2017-09-19 15:48:29 -07:00
Steve Dower
aa2bda788d
Fix build issues in Doc/make.bat ( #3663 )
2017-09-19 14:40:48 -07:00
Miss Islington (bot)
4f6bae9677
bpo-31487: Update F-strings doc example (GH-3627) (GH-3628)
...
Shorten the comment to: "using integer format specifier"
(cherry picked from commit 63c591c0b0
)
2017-09-17 07:57:08 -07:00
Miss Islington (bot)
46c1052404
bpo-31487: Improve f-strings documentation (GH-3604) (GH-3619)
...
Provide additional examples of using format specifiers in f-strings
Added examples for using integer and date format specifiers.
(cherry picked from commit f361897069
)
2017-09-16 12:01:32 -07:00
Miss Islington (bot)
d3cba8175c
bpo-31458: Clarify that Changelog is built from Misc/NEWS.d directory (GH-3617) (GH-3618)
...
(cherry picked from commit 0ec8c4bd10
)
2017-09-16 11:44:27 -07:00