Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | bpo-39259: poplib now rejects timeout = 0 (GH-17912) | Dong-hee Na | 2020-01-10 | 2 | -1/+14 | |
| | | | | | poplib.POP3 and poplib.POP3_SSL now raise a ValueError if the given timeout for their constructor is zero to prevent the creation of a non-blocking socket. | |||||
* | bpo-39161: Document multi-phase init modules under Py_NewInterpreter() ↵ | Petr Viktorin | 2020-01-09 | 1 | -17/+35 | |
| | | | | | | | | | (GH-17896) \+ this also adds a stronger warning against sharing objects between (sub-)interpreters. https://bugs.python.org/issue39161 | |||||
* | bpo-35292: Avoid calling mimetypes.init when http.server is imported (GH-17822) | An Long | 2020-01-08 | 1 | -3/+6 | |
| | ||||||
* | bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903) | Dong-hee Na | 2020-01-08 | 1 | -4/+4 | |
| | ||||||
* | bpo-39233: Update positional-only section in the glossary (GH-17874) | Pablo Galindo | 2020-01-08 | 1 | -3/+5 | |
| | | | https://bugs.python.org/issue39233 | |||||
* | bpo-38615: Add timeout parameter for IMAP4 and IMAP4_SSL constructor (GH-17203) | Dong-hee Na | 2020-01-07 | 2 | -10/+37 | |
| | | | | | | | | imaplib.IMAP4 and imaplib.IMAP4_SSL now have an optional *timeout* parameter for their constructors. Also, the imaplib.IMAP4.open() method now has an optional *timeout* parameter with this change. The overridden methods of imaplib.IMAP4_SSL and imaplib.IMAP4_stream were applied to this change. | |||||
* | bpo-39239: epoll.unregister() no longer ignores EBADF (GH-17882) | Victor Stinner | 2020-01-07 | 2 | -0/+7 | |
| | | | | The select.epoll.unregister() method no longer ignores the EBADF error. | |||||
* | bpo-38623: Doc: Add section for site module CLI. (GH-17858) | Inada Naoki | 2020-01-07 | 1 | -2/+7 | |
| | ||||||
* | Doc: Change Python 2 status to EOL. (GH-17885) | Inada Naoki | 2020-01-07 | 1 | -1/+1 | |
| | ||||||
* | bpo-39234: `enum.auto()` default initial value as 1 (GH-17878) | YoSTEALTH | 2020-01-06 | 1 | -1/+1 | |
| | | | | | | | | | | Updated as Eric mentioned "By default, the initial value starts at 1" https://bugs.python.org/issue39234 Automerge-Triggered-By: @ericvsmith | |||||
* | bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872) | YoSTEALTH | 2020-01-06 | 1 | -1/+1 | |
| | | | * `enum.auto()` initial value is now specified as being `1`. | |||||
* | Minor formatting improvements and fixes to idle.rst (GH-17165) | Tal Einat | 2020-01-05 | 1 | -7/+8 | |
| | ||||||
* | bpo-39130: Dict reversed was added in v3.8 so should say in the doc as well ↵ | Khalid Mammadov | 2020-01-05 | 1 | -0/+2 | |
| | | | | | | | | | (GH-17694) To be consistent with document layout, it should say when the feature was added. Although it's mentioned few other places in the doc but it's not explicitly say that at that place. https://bugs.python.org/issue39130 | |||||
* | Fix the parameter list of object. _rpow_ (#GH-16477) | HongWeipeng | 2020-01-05 | 1 | -1/+1 | |
| | ||||||
* | Replace links in howto/pyporting.rst with sphinx references (GH-17781) | Oleg Höfling | 2020-01-05 | 1 | -7/+3 | |
| | | | Signed-off-by: Oleg Höfling <oleg.hoefling@gmail.com> | |||||
* | Add link to zlib v1.1.3 vulnerability (GH-17156) | Emmanuel Nosa E | 2020-01-03 | 1 | -3/+2 | |
| | ||||||
* | bpo-39158: ast.literal_eval() doesn't support empty sets (GH-17742) | Raymond Hettinger | 2020-01-03 | 1 | -0/+3 | |
| | ||||||
* | Bring Python into the next decade. (GH-17801) | Benjamin Peterson | 2020-01-03 | 2 | -2/+2 | |
| | ||||||
* | bpo-39183: Fix formatting in library/ensurepip (GH-17787) | Rafael Fontenelle | 2020-01-01 | 1 | -1/+1 | |
| | | | | | | Remove extra space to fix formatting and avoid from splitting text in to strings. https://bugs.python.org/issue39183 | |||||
* | bpo-13601: always use line-buffering for sys.stderr (GH-17646) | Jendrik Seipp | 2020-01-01 | 1 | -3/+9 | |
| | ||||||
* | Document CodeType.replace (GH-17776) | Anthony Sottile | 2020-01-01 | 1 | -1/+7 | |
| | ||||||
* | Minor doc fixes in urllib.parse (GH-17745) | Борис Верховский | 2019-12-31 | 1 | -26/+27 | |
| | ||||||
* | bpo-34118: memoryview, range, and tuple are classes (GH-17761) | Terry Jan Reedy | 2019-12-30 | 1 | -3/+3 | |
| | | | | Tag memoryview, range, and tuple as classes, the same as list, etcetera, in the library manual built-in functions list. | |||||
* | bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() ↵ | Kyle Stanley | 2019-12-30 | 1 | -0/+3 | |
| | | | | (GH-16977) | |||||
* | bpo-39037: Fix lookup order of magic methods in with statement documentation ↵ | Géry Ogam | 2019-12-30 | 1 | -18/+49 | |
| | | | | | | | | | | (GH-17608) * __enter__ is now looked up before __exit__ to give a more intuitive error message * add pseudo-code equivalent for the with statement * fix pseudo-code for the async with statement to use a finally clause * use SUITE rather than BLOCK for consistency with the language grammar Patch by Géry Ogam. | |||||
* | Fix typos and remove deprecated deprecation warning. (GH-17741) | Antoine | 2019-12-29 | 1 | -11/+4 | |
| | ||||||
* | links in importlib.metadata.rst replaced with sphinx references (GH-17730) | Oleg Höfling | 2019-12-29 | 2 | -23/+18 | |
| | | | | | | | The importlib.metadata documentation uses hardcoded links to internal pages. This results in minor rendering issues. This change replaces the hardcoded links with suitable Sphinx roles. Signed-off-by: Oleg Höfling <oleg.hoefling@gmail.com> | |||||
* | bpo-39136: Fixed typos (GH-17720) | Gurupad Hegde | 2019-12-28 | 6 | -6/+6 | |
| | | | | | funtion -> function; configuraton -> configuration; defintitions -> definitions; focusses -> focuses; necesarily -> necessarily; follwing -> following; Excape -> Escape, | |||||
* | bpo-38731: Fix function signature of quiet in docs (GH-17719) | Batuhan Taşkaya | 2019-12-28 | 1 | -1/+1 | |
| | ||||||
* | closes bpo-39135: Remove 'time.clock()' mention in docs. (GH17709) | Michael Wayne Goodman | 2019-12-27 | 1 | -1/+0 | |
| | | | | | `time.clock()` was removed in Python 3.8, but it was still mentioned in the documentation for when `time.get_clock_info()` is given the argument `'clock'`. This commit removes that mention. | |||||
* | Update what's new with the latest GC improvements (GH-17708) | Pablo Galindo | 2019-12-26 | 1 | -0/+8 | |
| | ||||||
* | bpo-33961: Adjusted dataclasses docs to correct exceptions raised. (GH-7917) ↵ | Fabio Sangiovanni | 2019-12-25 | 1 | -3/+4 | |
| | | | | (GH-17677) | |||||
* | Fix the miscellaneous typo (GH-17700) | cocoatomo | 2019-12-25 | 1 | -1/+1 | |
| | | | A character "i" is omitted. | |||||
* | Minor C API documentation improvements. (GH-17696) | William Ayd | 2019-12-25 | 2 | -2/+2 | |
| | | | | | | | The added parentheses around the PyIter_Next assignment suppress the following warning which gcc throws without: ``` warning: using the result of an assignment as a condition without parentheses [-Wparentheses] ``` The other change is a typo fix | |||||
* | bpo-38914 Do not require email field in setup.py. (GH-17388) | Jürgen Gmach | 2019-12-23 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | When checking `setup.py` and when the `author` field was provided, but the `author_email` field was missing, erroneously a warning message was displayed that the `author_email` field is required. The specs do not require the `author_email`field: https://packaging.python.org/specifications/core-metadata/#author The same is valid for `maintainer` and `maintainer_email`. The warning message has been adjusted. modified: Doc/distutils/examples.rst modified: Lib/distutils/command/check.py https://bugs.python.org/issue38914 | |||||
* | [typo] fix dupe in datetime.fromisoformat docs (GH-17295) | Michael Morehouse | 2019-12-23 | 1 | -2/+0 | |
| | | | | | | | | | Fixes a nearly word for word duplication of a sentence that appears earlier in the caution section of datetime.datetime.fromisoformat in Doc/Library/datetime.rst. No issue created as it's a trivial change. Automerge-Triggered-By: @pganssle | |||||
* | Add missing markup (GH-17680) | cocoatomo | 2019-12-22 | 1 | -1/+1 | |
| | | | "HH", "MM" and "ffffff" are enclosed with double back quotes, but "SS" is left being bare | |||||
* | bpo-38918: Add __module__ entry for function & method type in inspect docs ↵ | Parth Sharma | 2019-12-20 | 1 | -0/+6 | |
| | | | | | | | | | | | table (GH-17408) Adds` __module__ ` entries for function & method types in inspect docs table. https://bugs.python.org/issue38918 | |||||
* | Doc typo (#17667) | Jesús Cea | 2019-12-20 | 1 | -1/+1 | |
| | ||||||
* | Add whatsnew for removal of asyncio.loop.create_datagram_endpoint()'s ↵ | Kyle Stanley | 2019-12-16 | 4 | -0/+37 | |
| | | | | *reuse_address* parameter (#17595) | |||||
* | bpo-39041: Add GitHub Actions support (GH-17594) | Steve Dower | 2019-12-16 | 1 | -3/+3 | |
| | ||||||
* | bpo-38348: Extend command line options of ast parsing tool (GH-16540) | Batuhan Taşkaya | 2019-12-16 | 1 | -0/+9 | |
| | | | | Add -i and --indent (indentation level), and --no-type-comments (type comments) command line options to ast parsing tool. | |||||
* | bpo-38316: Fix co_stacksize documentation (GH-16983) | Batuhan Taşkaya | 2019-12-15 | 1 | -2/+2 | |
| | ||||||
* | bpo-38021: Modify AIX platform_tag so it covers PEP 425 needs (GH-17303) | Michael Felt | 2019-12-15 | 1 | -0/+18 | |
| | | | | | | | | Provides a richer platform tag for AIX that we expect to be sufficient for PEP 425 binary distribution identification. Any backports to earlier Python versions will be handled via setuptools. Patch by Michael Felt. | |||||
* | bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 (GH-17568) | Jason R. Coombs | 2019-12-11 | 1 | -6/+6 | |
| | | | | | | | | * bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 including improved docs for custom finders and better serialization support in EntryPoints. * 📜🤖 Added by blurb_it. * Correct module reference | |||||
* | bpo-27961: Replace PY_ULLONG_MAX with ULLONG_MAX (GH-17539) | Sergey Fedoseev | 2019-12-09 | 1 | -1/+1 | |
| | ||||||
* | bpo-39007: Add auditing events to functions in winreg (GH-17541) | Steve Dower | 2019-12-09 | 1 | -0/+49 | |
| | | | Also allows winreg.CloseKey() to accept same types as other functions. | |||||
* | bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a ↵ | Steve Dower | 2019-12-09 | 1 | -0/+8 | |
| | | | | deprecation warning (GH-17540) | |||||
* | bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (#17311) | Kyle Stanley | 2019-12-09 | 1 | -5/+19 | |
| | ||||||
* | bpo-38916: array.array: remove fromstring() and tostring() (GH-17487) | Victor Stinner | 2019-12-09 | 2 | -10/+5 | |
| | | | | array.array: Remove tostring() and fromstring() methods. They were aliases to tobytes() and frombytes(), deprecated since Python 3.2. |