| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
| |
- 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 0cd2e81bea639828d7c9a7afc61fb1da9699492c)
|
|
|
|
| |
`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 0c71653cb8231f176d02140fdef3706de2e93b9f)
|
|
|
|
| |
Mention that the lower the priority number, the higher priority it represents.
(cherry picked from commit 9d5ec808de2c1359f434cc2fa8378458e4339c96)
|
|
|
| |
(cherry picked from commit f8802d80b32dbc64f9e0e72270695d24ac50e246)
|
|
|
| |
(cherry picked from commit 3df02dbc8e197053105f9dffeae40b04ec66766e)
|
|
|
|
|
| |
(GH-1699)
(cherry picked from commit 26248ef58dcf49619930ffa2e050ffa687a88601)
|
|
|
|
|
| |
documentation. (GH-4491) (#4493)
(cherry picked from commit 431665bf1971e66c51f59abf0693f700ff7919e8)
|
|
|
| |
(cherry picked from commit 337cbbace0a43f50fcd33ea4d3b7cb30733237db)
|
|
|
|
|
|
| |
Since f299abdafa0f2b6eb7abae274861b19b361c96bc
the remove_pyc() method no longer tries to
remove .pyo files.
(cherry picked from commit b56becb373f01c7e285f028bde640f0864d0240e)
|
|
|
| |
(cherry picked from commit 7750bded92d908cbc422c57b97214f8eec615b0d)
|
|
|
|
| |
`kargs` -> `kwargs`
(cherry picked from commit d505a29a15a6f9315d8c46445b8a0cccfc2048b8)
|
|
|
| |
(cherry picked from commit 3bda02222aa3783bf85fc3ff8bc042aefd9c4fd3)
|
|
|
| |
(cherry picked from commit b0b44b4b3337297007f5ef87220a75df204399f8)
|
|
|
| |
(cherry picked from commit e197a8538bae3c5f2727dfdc8672aa15d9429e51)
|
|
|
| |
(cherry picked from commit e184cfd7bf8bcfd160e3b611d4351ca3ce52d9e2)
|
|
|
|
|
| |
(#4320)
(cherry picked from commit 22b1128559bdeb96907da5840960691bb050d11a)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(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 1e5d54cfa031f1de9ee2d2e968e0551b6e2397b7)
|
|
|
| |
(cherry picked from commit 4135c89395726024abddb7340a0c7a42c801f616)
|
|
|
|
|
| |
(GH-1430) (#4271)
(cherry picked from commit b838cc3ff4e039af949c6a19bd896e98e944dcbe)
|
|
|
| |
(cherry picked from commit ac03c03b305273f39d5374e2826526d4ab6bb415)
|
|
|
|
| |
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 11225753a89c2907bb717e6c050fe907e5e11829)
|
|
|
|
|
|
| |
rejecting (GH-4158) (#4162)
separators that are not bytes-like objects..
(cherry picked from commit a2314283ff87c65e1745a42c2f2b716b1a209128)
|
|
|
| |
(cherry picked from commit 006617ff7d6df3fdedcfe53e94ee2c52cc796437)
|
|
|
| |
(cherry picked from commit 275d2d9c4663a1ea8d1f7c8778567a735b0372c1)
|
|
|
|
| |
bpo-31799: Make module.__spec__ more discoverable
(cherry picked from commit 191e3138200906e43cba9347177914325b54843f)
|
|
|
| |
(cherry picked from commit cd195e2a7ac5c9b2574d5462752b7939641de4a9)
|
|
|
|
|
|
|
|
|
|
|
|
| |
(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 b22273ec5d1992b0cbe078b887427ae9977dfb78)
|
|
|
|
|
|
| |
Reported by John Gamboa on docs@p.o at
https://mail.python.org/pipermail/docs/2017-June/031942.html
(cherry picked from commit 925510449984399cf58711843ddfe2e8007c3878)
|
|
|
| |
(cherry picked from commit 0e61e67a57deb4abc677808201d7cf3c38138e02)
|
|
|
|
|
|
|
| |
* 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 703ff381ffa946c23e7e25b0ae93a636a2607a40)
|
|
|
|
| |
Change the code example from using `get_history_length` to `get_current_history_length`.
(cherry picked from commit eeb5ffd54e56dd89a99c74eb512c36d62649cfec)
|
|
|
|
|
| |
(GH-3917)
(cherry picked from commit 28f713601d3ec80820e842dcb25a234093f1ff18)
|
|
|
| |
(cherry picked from commit 300dd552b15825abfe0e367ac14cec4c3e050dbc)
|
|
|
|
|
|
|
| |
* Fix incorrect links.
* Remove redundant links.
* Add signatures and index entries for gettext related
functions in the locale module.
(cherry picked from commit c02a1f4ad8fcdbffad2911c5a31c71a17a89d713)
|
|
|
|
|
| |
_thread (GH-3782) (#3783)
(cherry picked from commit 236329ed9fee01edb85d698d30682e304439d198)
|
|
|
| |
(cherry picked from commit 49392c63a243052c8013bef80d35202bb6d7c404)
|
|
|
| |
(cherry picked from commit 0bf287b6e0a42877b06cbea5d0fe6474d8061caa)
|
|
|
|
|
| |
The dunderless functions are preferred; dunder are retained for back compatilibity.
Patch by Sanket Dasgupta.
(cherry picked from commit 5b9299d8c72aeadccadd77e4b8132094ba9a1f96)
|
|
|
|
|
|
|
| |
(GH-3667) (#3719)
Defer removing old behavior to 3.8.
Document new feature of selection_set() and friends.
(cherry picked from commit 2fad10235460ac394cc8b869c41f47aba3d63594)
|
|
|
|
| |
Mention that ``NewType`` can derive from another ``NewType``.
(cherry picked from commit 039b25d8fd21f8d5d9e3cb536402d952cf068dc1)
|
|
|
| |
(cherry picked from commit aecc08ac3a14a73aa353655bb65ff8d965e935a0)
|
|
|
|
|
|
|
|
| |
Previously ensurepip would always report success, even if the
pip installation failed.
(cherry picked from commit 9adda0cdf89432386b7a04444a6199b580d287a1)
* Update version changed notice for backport
|
|
|
| |
(cherry picked from commit 19e4d9346db7fb65845b98a9cb9caacaaac8a81a)
|
|
|
|
|
| |
'Strip trailing whitespace' is not limited to spaces. Wording caters to beginners who
do know know the meaning of 'whitespace'. Multiline string literals are not skipped.
(cherry picked from commit ff70289)
|
|
|
|
|
|
| |
The `blake2b` function does not take the `data` keyword argument.
The hex digest returned by sign was a string, whereas compare_digest expects bytes-like objects.
Typo fix: compare_digesty -> compare_digest
(cherry picked from commit 312ffead1eb272535e021e248b5d74ab04b2e72e)
|
|
|
|
|
|
| |
(GH-3525)
Make it clear that Ellipsis tokens also have type attribute set to token.OP..
(cherry picked from commit 5f8fbf917ebf2398aa75a1f271617e2e50ab7c88)
|
|
|
|
|
| |
IDLE calls tcl/tk update in the background in order to make live
interaction and experimentatin with tkinter applications much easier.
(cherry picked from commit 98758bc67fb39b74bab368bef8ff3b34554c77c8)
|
|
|
|
| |
As needed for the conversion of extensions to features.
(cherry picked from commit adb4cd2a2a59019ac6955e0fd531c9fec9258962)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(GH-2494) (#3487)
About 10 IDLE features were implemented as supposedly optional
extensions. Their different behavior could be confusing or worse for
users and not good for maintenance. Hence the conversion.
The main difference for users is that user configurable key bindings
for builtin features are now handled uniformly. Now, editing a binding
in a keyset only affects its value in the keyset. All bindings are
defined together in the system-specific default keysets in config-
extensions.def. All custom keysets are saved as a whole in config-
extension.cfg. All take effect as soon as one clicks Apply or Ok.
The affected events are '<<force-open-completions>>', '<<expand-word>>',
'<<force-open-calltip>>', '<<flash-paren>>', '<<format-paragraph>>',
'<<run-module>>', '<<check-module>>', and '<<zoom-height>>'. Any
(global) customizations made before 3.6.3 will not affect their keyset-
specific customization after 3.6.3. and vice versa.
Inital patch by Charles Wohlganger, revised by Terry Jan Reedy.
(cherry picked from commit 58fc71c)
|
|
|
|
|
| |
Thanks Arfrever!
Signed-off-by: Christian Heimes <christian@python.org>
|