Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-34398: Allow glossary results to show up on search page (GH-8773) | Ammar Askar | 2020-12-18 | 3 | -2/+106 |
| | |||||
* | bpo-42675: Document collections.abc.Callable changes (GH-23839) | kj | 2020-12-18 | 2 | -0/+28 |
| | |||||
* | bpo-17140: Document multiprocessing's ThreadPool (GH-23812) | Matt Wozniski | 2020-12-18 | 1 | -0/+40 |
| | | | | | Up until now, the `multiprocessing.pool.ThreadPool` class has gone undocumented, despite being a public class in multiprocessing that is included in `multiprocessing.pool.__all__`. | ||||
* | bpo-42238: Check Misc/NEWS.d/next/ for reStructuredText issues. (GH-23802) | Julien Palard | 2020-12-18 | 2 | -0/+77 |
| | |||||
* | bpo-39096: Format specification documentation fixes for numeric types (GH-23575) | Mark Dickinson | 2020-12-18 | 1 | -12/+23 |
| | |||||
* | bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) | Zackery Spytz | 2020-12-17 | 1 | -1/+1 |
| | |||||
* | [doc] Fix a few margins due to bad markup (GH-23619) | Andre Delfino | 2020-12-17 | 11 | -89/+88 |
| | |||||
* | bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly ↵ | Mark Shannon | 2020-12-17 | 1 | -1/+2 |
| | | | | | | | | | after raising or reraising an exception (GH-23803) * Ensure that f_lasti is set correctly after an exception is raised to conform to PEP 626. * Update importlib * Add NEWS. | ||||
* | [doc] Fix erroneous backslashes in signatures and names (GH-23658) | Andre Delfino | 2020-12-17 | 32 | -88/+88 |
| | | | | | The issue being resolved is shown in the 3.10 docs (if you select docs for older versions you won't see a visual glitch). The newer sphinx version that produces the 3.10 docs doesn't treat the backslash to escape things in some situations it previously did. | ||||
* | Fix indentation for get_stats_profile() docs (GH-23618) | Matthew Suozzo | 2020-12-16 | 1 | -1/+1 |
| | | | | The existing method is indented one too many times which makes it look like a sub-method of print_callees(). | ||||
* | bpo-23915: update and elucidate documentation of with_traceback (GH-23680) | Irit Katriel | 2020-12-16 | 1 | -2/+7 |
| | |||||
* | Clarify eval() doc from library/functions. (GH-22700) | Antoine | 2020-12-16 | 1 | -8/+9 |
| | |||||
* | bpo-42179: Clarify exception chaining (GH-23160) | Vladimir | 2020-12-16 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | * Update errors.rst Clarify exception chaining behaviour and give a reference to the library documentation. * Update errors.rst Wording * Update errors.rst Spelling * Update errors.rst Remove mentioning of special attributes as folks think it's too much for beginners. | ||||
* | bpo-42090: zipfile.Path.joinpath now accepts multiple arguments (GH-22976) | Jason R. Coombs | 2020-12-16 | 1 | -1/+14 |
| | | | Automerge-Triggered-By: GH:jaraco | ||||
* | bpo-31904: Disable os.popen and popen test cases on VxWorks (GH-21687) | pxinwr | 2020-12-15 | 1 | -1/+1 |
| | |||||
* | Update stable ABI script for MacOS and update list of exported symbols ↵ | Pablo Galindo | 2020-12-15 | 1 | -0/+1 |
| | | | | (GH-23783) | ||||
* | bpo-36675: Doc: Reveal doctest directives (GH-23620) | Julien Palard | 2020-12-15 | 1 | -17/+37 |
| | |||||
* | bpo-42639: atexit now logs callbacks exceptions (GH-23771) | Victor Stinner | 2020-12-14 | 1 | -0/+9 |
| | | | | | | | | | | | At Python exit, if a callback registered with atexit.register() fails, its exception is now logged. Previously, only some exceptions were logged, and the last exception was always silently ignored. Add _PyAtExit_Call() function and remove PyInterpreterState.atexit_func member. call_py_exitfuncs() now calls directly _PyAtExit_Call(). The atexit module must now always be built as a built-in module. | ||||
* | Add two spaces around equal sign (#23719) | sblondon | 2020-12-13 | 1 | -1/+1 |
| | | | Fit to PEP8 coding style | ||||
* | bpo-41879: Doc: Fix description of async for statement (GH-23548) | Nick Gaya | 2020-12-11 | 1 | -4/+4 |
| | | | Fix the wording in the documentation of `async for` to correctly describe asynchronous iterables. This fix is relevant for version 3.7 onward. | ||||
* | bpo-42385: [Enum] add `_generate_next_value_` to StrEnum (GH-23735) | Ethan Furman | 2020-12-10 | 1 | -2/+4 |
| | | | The default for auto() is to return an integer, which doesn't work for `StrEnum`. The new `_generate_next_value_` for `StrEnum` returns the member name, lower cased. | ||||
* | bpo-41877: Improve docs for assert misspellings check in mock (GH-23729) | vabr-g | 2020-12-10 | 1 | -3/+4 |
| | | | | | | | | | This is a follow-up to https://github.com/python/cpython/commit/4662fa9bfe4a849fe87bfb321d8ef0956c89a772. That original commit expanded guards against misspelling assertions on mocks. This follow-up updates the documentation and improves the error message by pointing out the potential cause and solution. Automerge-Triggered-By: GH:gpshead | ||||
* | bpo-42517: [Enum] do not convert private names into members (GH-23722) | Ethan Furman | 2020-12-10 | 1 | -0/+9 |
| | | | private names, such as `_Color__hue` and `_Color__hue_` are now normal attributes, and do not become members nor raise exceptions | ||||
* | [doc] Link to issue regarding logging.disable level param default value ↵ | Andre Delfino | 2020-12-09 | 1 | -2/+2 |
| | | | | (GH-23726) | ||||
* | [doc] Document logging.basicConfig default format (GH-23710) | Andre Delfino | 2020-12-09 | 1 | -1/+3 |
| | | | Automerge-Triggered-By: GH:vsajip | ||||
* | bpo-42599: Remove useless PyModule_GetWarningsModule() (GH-23691) | Hai Shi | 2020-12-08 | 1 | -0/+5 |
| | | | | Removed PyModule_GetWarningsModule() which is useless due to the _warnings module was converted to a builtin module in 2.6. | ||||
* | bpo-42579: Make workaround for various versions of Sphinx more robust (GH-23662) | Matěj Cepl | 2020-12-07 | 1 | -1/+6 |
| | | | | | | The solution in gh#python/cpython#13236 is too strict because it effectively requires the use of Sphinx >= 2.0. It is not too difficult to make the same solution more robust so it works with all normal versions of Sphinx. | ||||
* | bpo-30459: Cast the result of PyCell_SET to void (GH-23654) | Victor Stinner | 2020-12-07 | 1 | -0/+7 |
| | |||||
* | bpo-38843: Document behavior of default when the attribute is already set ↵ | Raymond Hettinger | 2020-12-07 | 1 | -1/+9 |
| | | | | (GH-23653) | ||||
* | bpo-26131: Deprecate usage of load_module() (GH-23469) | Brett Cannon | 2020-12-04 | 1 | -1/+17 |
| | | | Raise an ImportWarning when the import system falls back on load_module(). As for implementations of load_module(), raise a DeprecationWarning. | ||||
* | bpo-42545: Check that all symbols in the limited ABI are exported (GH-23616) | Pablo Galindo | 2020-12-04 | 1 | -0/+779 |
| | |||||
* | bpo-42523: Fix supported versions in "Using Python on Windows" (GH-23603) | Zackery Spytz | 2020-12-03 | 1 | -2/+2 |
| | |||||
* | bpo-37221: PyCode_New() didn't change in Python 3.8 (GH-23595) | Victor Stinner | 2020-12-01 | 1 | -3/+0 |
| | |||||
* | [doc] Fix abc.update_abstractmethods markup (GH-23576) | Andre Delfino | 2020-12-01 | 1 | -1/+2 |
| | | | Add link to ABCMeta while at it. | ||||
* | Fix bz2 examples markup (#23580) | Andre Delfino | 2020-12-01 | 1 | -8/+0 |
| | |||||
* | bpo-38200: Add itertools.pairwise() (GH-23549) | Raymond Hettinger | 2020-12-01 | 1 | -6/+17 |
| | |||||
* | bpo-28468: Add platform.freedesktop_os_release() (GH-23492) | Christian Heimes | 2020-11-30 | 2 | -0/+46 |
| | | | | | | | Add platform.freedesktop_os_release() function to parse freedesktop.org os-release files. Signed-off-by: Christian Heimes <christian@python.org> Co-authored-by: Victor Stinner <vstinner@python.org> | ||||
* | bpo-42485: [Doc] Link to PEP 617 from full grammar specification (GH-23532) | James Gerity | 2020-11-30 | 1 | -1/+2 |
| | | | Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> | ||||
* | bpo-42501: Revise the usage note for Enums with the choices (GH-23563) | Raymond Hettinger | 2020-11-30 | 1 | -14/+3 |
| | |||||
* | bpo-42451: Indicate that PyTuple_GetItem does not support negative indices ↵ | Yasser A | 2020-11-30 | 1 | -1/+1 |
| | | | | (GH-23529) | ||||
* | bpo-42450: Minor updates to the itertools recipes (GH-23555) | Raymond Hettinger | 2020-11-29 | 1 | -5/+5 |
| | |||||
* | bpo-42392: Remove deprecated loop parameter from docs (GH-23552) | Yurii Karabas | 2020-11-29 | 5 | -80/+22 |
| | |||||
* | bpo-39096: Improve description of 'e', 'f' and 'g' presentation types (#23537) | Mark Dickinson | 2020-11-29 | 1 | -12/+31 |
| | | | | | | | | | | | * Improve description of 'e', 'f' and 'g' presentation types * Drop the 'E' from Scientific 'E' notation; remove >= 0 qualifications * Fix false statement that the alternate form is valid for Decimal * Nitpick: remove the Harvard/Oxford comma * Add note that the decimal point is also removed if no digits follow it, except in alternate form | ||||
* | bpo-31904: add shell requirement for test_pipes (GH-23489) | pxinwr | 2020-11-28 | 1 | -0/+2 |
| | | | VxWorks has no user space shell provided so it can't support pipes module. Also add shell requirement for running test_pipes. | ||||
* | Fix dis markup (GH-23524) | Andre Delfino | 2020-11-28 | 1 | -6/+6 |
| | |||||
* | Fix multiprocessing markup (GH-23525) | Andre Delfino | 2020-11-28 | 1 | -3/+3 |
| | |||||
* | bpo-42489: Fix the signature for list.sort() in the tutorial (GH-23538) | Zackery Spytz | 2020-11-28 | 1 | -1/+1 |
| | |||||
* | bpo-17852: Doc: Fix the tutorial about closing files (GH-23135) | Volker-Weissmann | 2020-11-27 | 1 | -5/+10 |
| | | | Co-authored-by: Inada Naoki <songofacandy@gmail.com> | ||||
* | Document optional 'task'/'asyncgen' fields in call_exception_handler (#21735) | Shane Harvey | 2020-11-26 | 1 | -1/+4 |
| | |||||
* | Typo: fix inverted sense of statement (GH-23288) | basak | 2020-11-25 | 1 | -1/+1 |
| | | | | | | | Looks like a "not" was inadvertently omitted in commit e6a7ea4. Classmethods are useful when data stored in specific instances are *not* needed. Automerge-Triggered-By: GH:JulienPalard |