Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove trailing >>> in enum docs (GH-21358) | E-Paine | 2020-07-09 | 1 | -1/+0 |
| | | | The >>> as the last line serve no purpose and are not colored correctly by Sphinx. | ||||
* | bpo-41199: Docstring convention not followed for dataclasses documentation ↵ | marload | 2020-07-09 | 1 | -1/+1 |
| | | | | | page (GH-21413) Automerge-Triggered-By: @ericvsmith | ||||
* | Doc: Builtins functions: faster jump table (GH-21376) | Julien Palard | 2020-07-09 | 1 | -18/+32 |
| | |||||
* | bpo-41224: Document is_annotated() in symtable module and update doc strings ↵ | Joannah Nanjekye | 2020-07-07 | 1 | -0/+4 |
| | | | | | | | | | | | (GH-21369) * Document is_annotate() and update doc strings * Move quotes to the next line. Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> | ||||
* | bpo-40742: Doc: fix parallel build. (GH-21237) | Julien Palard | 2020-07-06 | 1 | -0/+35 |
| | |||||
* | bpo-37207: Update whatsnews for 3.9 (GH-21337) | Dong-hee Na | 2020-07-06 | 1 | -0/+4 |
| | |||||
* | bpo-28681: Clarify multiple function names in the tutorial (GH-21340) | Joannah Nanjekye | 2020-07-06 | 1 | -5/+4 |
| | | | | | | | | | * improve control flow docs * Add also Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> | ||||
* | bpo-26205: Specify the number of nested scopes (GH-21324) | Joannah Nanjekye | 2020-07-06 | 1 | -2/+2 |
| | | | | | | | | | * Clarify number of scopes * Indicate 3 or 4 Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> | ||||
* | bpo-41211: Doc: Fix PyLong_FromUnicodeObject (GH-21325) | Inada Naoki | 2020-07-05 | 1 | -3/+1 |
| | | | It doesn't use PyUnicode_EncodeDecimal. It uses a private API instead. | ||||
* | bpo-33864: Clarify the docs for typing.ByteString (GH-21311) | Zackery Spytz | 2020-07-04 | 1 | -1/+1 |
| | |||||
* | Remove extraneous file from the Docs folder (GH-21286) | Pablo Galindo | 2020-07-02 | 1 | -0/+0 |
| | |||||
* | bpo-40967: Remove deprecated asyncio.Task.current_task() and ↵ | Rémi Lapeyre | 2020-07-02 | 2 | -25/+5 |
| | | | | asyncio.Task.all_tasks() (GH-20874) | ||||
* | bpo-39385: Add an assertNoLogs context manager to unittest.TestCase (GH-18067) | Kit Choi | 2020-07-01 | 1 | -0/+21 |
| | | | Co-authored-by: Rémi Lapeyre <remi.lapeyre@henki.fr> | ||||
* | Doc: Minor fix to init config C API documentation (GH-21198) | tomerv | 2020-07-01 | 1 | -2/+2 |
| | | | Co-authored-by: Tomer Vromen <tomer.vromen@intel.com> | ||||
* | Update FAQ release schedule and estimated users (GH-21180) | E-Paine | 2020-06-30 | 1 | -4/+4 |
| | | | | | Update FAQ to include: * The new yearly release schedule from PEP 602 * Estimated users from "tens of thousands" to "millions" | ||||
* | bpo-36346: Raise DeprecationWarning when creating legacy Unicode (GH-20933) | Inada Naoki | 2020-06-30 | 1 | -0/+5 |
| | |||||
* | bpo-41123: Remove PyUnicode_AsUnicodeCopy (GH-21209) | Inada Naoki | 2020-06-30 | 3 | -17/+4 |
| | |||||
* | bpo-23427: Add sys.orig_argv attribute (GH-20729) | Victor Stinner | 2020-06-29 | 3 | -1/+45 |
| | | | | | | | Add sys.orig_argv attribute: the list of the original command line arguments passed to the Python executable. Rename also PyConfig._orig_argv to PyConfig.orig_argv and document it. | ||||
* | Update libmpdec license dates (GH-21216) | Stefan Krah | 2020-06-29 | 1 | -1/+1 |
| | |||||
* | bpo-41123: Remove PyLong_FromUnicode() (GH-21204) | Inada Naoki | 2020-06-29 | 3 | -16/+3 |
| | |||||
* | bpo-41123: Remove PyUnicode_GetMax() (GH-21192) | Inada Naoki | 2020-06-29 | 1 | -0/+3 |
| | |||||
* | bpo-38870: Extend subject of ast.unparse warnings (GH-21053) | Batuhan Taskaya | 2020-06-28 | 1 | -1/+6 |
| | | | | | | | - Mention that some compiler optimizations might not roundtrip exactly (such as constant tuples and frozensets). - Add a warning about it might raise RecursionError on very complex expressions due to recursive unparsing aspect of ast.unparse | ||||
* | Add soft keywords to the documentation (GH-21185) | Pablo Galindo | 2020-06-27 | 1 | -0/+16 |
| | |||||
* | bpo-41123: Remove Py_UNICODE_str* functions (GH-21164) | Inada Naoki | 2020-06-27 | 1 | -1/+15 |
| | | | They are undocumented and deprecated since Python 3.3. | ||||
* | bpo-41103: Remove old buffer protocol support (#21117) | Inada Naoki | 2020-06-25 | 4 | -74/+5 |
| | | | They are deprecated since Python 3.0. | ||||
* | Fix typo in functions.rst (GH-21131) | Ram Rachum | 2020-06-25 | 1 | -1/+1 |
| | |||||
* | bpo-40204: Pin Sphinx version to 2.3.1 in ``Doc/Makefile``. (GH-21141) | Ned Deily | 2020-06-25 | 1 | -1/+1 |
| | |||||
* | bpo-40773: Fix rendering for 'retval' on the pdb page (GH-21081) | Arisaka97 | 2020-06-24 | 1 | -0/+1 |
| | | | Automerge-Triggered-By: @merwok | ||||
* | bpo-40707: Document that Popen.communicate sets the returncode attribute ↵ | Gareth Rees | 2020-06-24 | 1 | -4/+5 |
| | | | | (GH-20283) | ||||
* | Improve asyncio.loop.call_soon() documentation (GH-20883) | Roger Iyengar | 2020-06-23 | 3 | -3/+7 |
| | | | | | | * Add a glossary entry for the term "callback" * Link to it in loop.call_soon() and in the "Concurrency and Multithreading" section Co-authored-by: Kyle Stanley <aeros167@gmail.com> | ||||
* | Add link to .pypirc specification (GH-20680) | Brian Rutledge | 2020-06-20 | 1 | -0/+3 |
| | | | | | Related to https://github.com/pypa/twine/issues/638 and https://github.com/pypa/packaging.python.org/issues/730, I wrote a spec based on the one that was removed in https://github.com/python/cpython/pull/13087. However, a Google search for "pypirc" turned up at least one [blog post](https://truveris.github.io/articles/configuring-pypirc/) that links to https://docs.python.org/3/distutils/packageindex.html#the-pypirc-file, which now just links to this document. So, I thought a link to the spec would be handy. Automerge-Triggered-By: @jaraco | ||||
* | bpo-41024: doc: Explicitly mention use of 'enum.Enum' as a valid container ↵ | Vincent Férotin | 2020-06-20 | 1 | -0/+14 |
| | | | | | | | | | for '… (GH-20964) …choices' argument of 'argparse.ArgumentParser.add_argument'. Here's a short first proposal of doc. enhancement addressing [bpo-41024](). Automerge-Triggered-By: @csabella | ||||
* | bpo-40636: Documentation for zip-strict (#20961) | Ram Rachum | 2020-06-19 | 2 | -44/+87 |
| | |||||
* | bpo-40943: PY_SSIZE_T_CLEAN required for '#' formats (GH-20784) | Victor Stinner | 2020-06-19 | 2 | -19/+24 |
| | | | | | | | The PY_SSIZE_T_CLEAN macro must now be defined to use PyArg_ParseTuple() and Py_BuildValue() "#" formats: "es#", "et#", "s#", "u#", "y#", "z#", "U#" and "Z#". See the PEP 353. Update _testcapi.test_buildvalue_issue38913(). | ||||
* | bpo-38144: Add the root_dir and dir_fd parameters in glob.glob(). (GH-16075) | Serhiy Storchaka | 2020-06-18 | 2 | -2/+22 |
| | |||||
* | bpo-40884: Added defaults parameter for logging.Formatter (GH-20668) | Bar Harel | 2020-06-18 | 1 | -1/+9 |
| | | | | | Docs and tests are underway. Automerge-Triggered-By: @vsajip | ||||
* | bpo-38377: Add support.skip_if_broken_multiprocessing_synchronize() (GH-20944) | Victor Stinner | 2020-06-18 | 1 | -0/+8 |
| | | | | | | On Linux, skip tests using multiprocessing if the current user cannot create a file in /dev/shm/ directory. Add the skip_if_broken_multiprocessing_synchronize() function to the test.support module. | ||||
* | bpo-41006: What's New: less => fewer modules (GH-20955) | Victor Stinner | 2020-06-17 | 1 | -1/+1 |
| | | | Typo spotted by Eric V. Smith ;-) | ||||
* | bpo-41006: Document the runpy optimization (GH-20953) | Victor Stinner | 2020-06-17 | 1 | -0/+5 |
| | |||||
* | bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878) | Inada Naoki | 2020-06-17 | 1 | -0/+11 |
| | | | | Co-authored-by: Kyle Stanley <aeros167@gmail.com> Co-authored-by: Victor Stinner <vstinner@python.org> | ||||
* | bpo-36020: Require vsnprintf() to build Python (GH-20899) | Victor Stinner | 2020-06-15 | 2 | -7/+7 |
| | | | | | | | | The C99 functions snprintf() and vsnprintf() are now required to build Python. PyOS_snprintf() and PyOS_vsnprintf() no longer call Py_FatalError(). Previously, they called Py_FatalError() on a buffer overflow on platforms which don't provide vsnprintf(). | ||||
* | Fixes dead links to Django's logging config docs (GH-20823) | kevin seelbach | 2020-06-14 | 1 | -2/+2 |
| | | | | | Fixes two outdated URLs to point at the current "stable" version of Django's logging documentation. Automerge-Triggered-By: @vsajip | ||||
* | bpo-37674: Tweak imp module deprecation note in the docs (GH-20480) | Zackery Spytz | 2020-06-13 | 1 | -1/+1 |
| | |||||
* | Minor change on threading.Thread.native_id documentation. (GH-18129) | Antoine | 2020-06-12 | 1 | -5/+4 |
| | | | | | | | | | Remove duplication in `threading.Thread.native_id` documentation, so resulting documentation is more consistent with the `threading.Thread.ident`. Issue initially raised [here](https://github.com/python/python-docs-fr/pull/1122#discussion_r369236634) (in French). No issue associated to this PR. Automerge-Triggered-By: @csabella | ||||
* | bpo-40890: Add `mapping` property to dict views (GH-20749) | Dennis Sweeney | 2020-06-12 | 2 | -0/+17 |
| | |||||
* | Update lexical_analysis.rst (GH-17508) | Géry Ogam | 2020-06-12 | 1 | -1/+1 |
| | | | | | Use Sphinx role markup for `str.format`. Automerge-Triggered-By: @csabella | ||||
* | bpo-33944: site: Add site-packages tracing in verbose mode (GH-12110) | native-api | 2020-06-12 | 1 | -0/+5 |
| | |||||
* | bpo-40939: Remove the old parser (GH-20768) | Pablo Galindo | 2020-06-11 | 2 | -21/+0 |
| | | | This commit removes the old parser, the deprecated parser module, the old parser compatibility flags and environment variables and all associated support code and documentation. | ||||
* | bpo-40275: Move TransientResource to test_urllib2net (GH-20812) | Victor Stinner | 2020-06-11 | 1 | -9/+0 |
| | | | | | | Move TransientResource, time_out, socket_peer_reset and ioerror_peer_reset from test.support to test_urllib2net. Remove "import errno" from test.support. | ||||
* | bpo-40275: Add warnings_helper submodule in test.support (GH-20797) | Hai Shi | 2020-06-11 | 1 | -93/+102 |
| |