Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Spell out 's.pop() or s.pop(i)' (GH-27398) | Dennis Sweeney | 2021-07-28 | 1 | -1/+1 |
| | |||||
* | bpo-44756: in ./Doc, `make build` depends on `make html` (#27403) | Jack DeVries | 2021-07-28 | 2 | -20/+23 |
| | | | | - venv rule is now conditional, and only does anything if $VENVDIR does not exist - add rule "clean-venv" | ||||
* | bpo-44399: Document another example of unexpected behavior. (GH-27407) | Vinay Sajip | 2021-07-28 | 1 | -1/+3 |
| | |||||
* | bpo-44559: [Enum] correct `versionadded` to 3.11 for new features (GH-27388) | Steffen Zeile | 2021-07-27 | 1 | -6/+6 |
| | |||||
* | bpo-44740: Make minor edits to lowercasing "internet" and "web". (GH-27385) | Mariusz Felisiak | 2021-07-27 | 3 | -3/+3 |
| | | | Follow up to 11749e2dc20ad6a76e9a39e948853e89b2b4bbed | ||||
* | [doc] Fix typo in asyncio Event Loop (GH-27377) | Vinicius Gubiani Ferreira | 2021-07-27 | 1 | -1/+1 |
| | | | | | First Pull Request to cpython, so forgive me for any mistakes Automerge-Triggered-By: GH:Mariatta | ||||
* | bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378) | Mariusz Felisiak | 2021-07-26 | 38 | -65/+65 |
| | | | Co-authored-by: Łukasz Langa <lukasz@langa.pl> | ||||
* | Fix typos in `Weekday.today` example (GH-27363) | Steffen Zeile | 2021-07-26 | 1 | -1/+1 |
| | |||||
* | docs: replace "Mac OS X" -> "macOS" (GH-27364) | partev | 2021-07-26 | 1 | -6/+6 |
| | | | | | "Mac OS X" has been rebranded as macOS https://www.apple.com/macos | ||||
* | The current documentation says it returns None if the name is not found, but ↵ | Jelle Zijlstra | 2021-07-26 | 1 | -1/+1 |
| | | | | | | | (GH-26785) the implementation uses [] and will raise KeyError instead. Noticed by @srittau in python/typeshed@5659. | ||||
* | bpo-43443: Clarify difference between shelve objects and dicts (GH-27004) | Serhiy Storchaka | 2021-07-26 | 1 | -1/+2 |
| | |||||
* | bpo-44490: Add 'Whats New' docs regarding types.Union changes (GH-27215) | Yurii Karabas | 2021-07-26 | 1 | -1/+2 |
| | |||||
* | bpo-44732: Rename types.Union to types.UnionType (#27342) | Hasan | 2021-07-26 | 2 | -5/+5 |
| | | | | Co-authored-by: Łukasz Langa <lukasz@langa.pl> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||||
* | Small text fixes for enum.rst (#27322) | Elliot Waite | 2021-07-26 | 1 | -8/+9 |
| | | | Co-authored-by: Ethan Furman <ethan@stoneleaf.us> | ||||
* | Fix typo in dataclasses documentation (#27360) | thomkeh | 2021-07-26 | 1 | -1/+1 |
| | | | "affect" -> "effect" | ||||
* | bpo-44693: Update __future__ entry in Doc/glossary.rst (GH-27349) | Steven Hsu | 2021-07-26 | 1 | -6/+7 |
| | | | | | | Replace sentence with confusing "pseudo-module" with two sentences separating future statements and the __future__ module. Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> | ||||
* | bpo-42378: fixed log truncation on logging shutdown (GH-27310) | andrei kulakov | 2021-07-25 | 1 | -0/+3 |
| | | | Automerge-Triggered-By: GH:vsajip | ||||
* | bpo-44399: Update logging cookbook to document patterns to be avoided. ↵ | Vinay Sajip | 2021-07-25 | 1 | -0/+79 |
| | | | | (GH-27348) | ||||
* | bpo-43184: Add information about added attribute and method. (GH-27347) | Vinay Sajip | 2021-07-25 | 1 | -0/+4 |
| | |||||
* | Fix typo in ssl documentation (GH-27329) | Anton Grübel | 2021-07-24 | 1 | -2/+2 |
| | |||||
* | bpo-44611: Update docs for os and whatsnew 3.11 (#27314) | Dong-hee Na | 2021-07-24 | 2 | -3/+7 |
| | |||||
* | bpo-44353: Document that typing.NewType is now a class (#27319) | Ken Jin | 2021-07-24 | 1 | -10/+19 |
| | |||||
* | bpo-44611: Use BCryptGenRandom instead of CryptGenRandom on Windows (GH-27168) | Dong-hee Na | 2021-07-23 | 1 | -0/+8 |
| | |||||
* | bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make ↵ | Petr Viktorin | 2021-07-23 | 1 | -10/+1 |
| | | | | | | | | | | | | Py_TPFLAGS_HAVE_VERSION_TAG no-op (GH-27260) * Remove code that checks Py_TPFLAGS_HAVE_VERSION_TAG The field is always present in the type struct, as explained in the added comment. * Remove Py_TPFLAGS_HAVE_AM_SEND The flag is not needed, and since it was added in 3.10 it can be removed now. | ||||
* | bpo-44713: [doc fix]: typo in subprocess.rst (GH-27297) | Jack DeVries | 2021-07-22 | 1 | -1/+1 |
| | | | | This fixes a small typo. The code fragment should not be quoted. Thank you @merwok for the feedback. | ||||
* | bpo-14879: [doc] clarify how to check for errors from subprocess.Popen(..., ↵ | Jack DeVries | 2021-07-22 | 1 | -1/+4 |
| | | | | shell=True) (GH-26755) | ||||
* | bpo-44651: delete entry of "coercion" in Doc/glossary.rst (GH-27226) | Steven Hsu | 2021-07-22 | 1 | -10/+0 |
| | | | | bpo 44651: delete entry of "coercion". | ||||
* | Fix typo in collections.rst (#27270) | Elliot Waite | 2021-07-22 | 1 | -1/+1 |
| | |||||
* | bpo-30511: Add note on thread safety to shutil.make_archive() (#26933) | andrei kulakov | 2021-07-21 | 1 | -0/+4 |
| | | | Co-authored-by: Łukasz Langa <lukasz@langa.pl> | ||||
* | correct spelling (GH-27076) | Sondre Lillebø Gundersen | 2021-07-19 | 1 | -1/+1 |
| | |||||
* | Clean up comma usage in Doc/library/functions.rst (#27083) | α∂мιηιχтяαтσя | 2021-07-19 | 1 | -38/+38 |
| | |||||
* | bpo-42238: Fix small rst issue in NEWS.d/. (#27238) | Julien Palard | 2021-07-19 | 1 | -1/+9 |
| | |||||
* | bpo-44340: Add support for building with clang full/thin lto (GH-27231) | Dong-hee Na | 2021-07-19 | 1 | -1/+4 |
| | |||||
* | bpo-41546: make pprint (like print) not write to stdout when it is None ↵ | Irit Katriel | 2021-07-19 | 1 | -26/+14 |
| | | | | (GH-26810) | ||||
* | bpo-43086: Add handling for out-of-spec data in a2b_base64 (GH-24402) | Idan Moral | 2021-07-19 | 1 | -1/+13 |
| | | | | | | | binascii.a2b_base64 gains a strict_mode= parameter. When enabled it will raise an error on input that deviates from the base64 spec in any way. The default remains False for backward compatibility. Code reviews and minor tweaks by: Gregory P. Smith <greg@krypto.org> [Google] | ||||
* | bpo-44561: Update hyperlinks in Doc/distributing/index.rst (#27032) | Steven Hsu | 2021-07-19 | 1 | -3/+3 |
| | | | | | | | | * Update hyperlinks in Doc/distributing/index.rst Update three expired hyperlinks. Closes bpo-44561. | ||||
* | bpo-42355: symtable.get_namespace() now checks whether there are multiple or ↵ | Batuhan Taskaya | 2021-07-18 | 1 | -2/+2 |
| | | | | any namespaces found (GH-23278) | ||||
* | bpo-44638: Add a reference to the zipp project and hint as to how to use it. ↵ | Jason R. Coombs | 2021-07-16 | 1 | -0/+4 |
| | | | | | (GH-27188) Automerge-Triggered-By: GH:jaraco | ||||
* | bpo-44569: Decouple frame formatting in traceback.py (GH-27038) | Ammar Askar | 2021-07-16 | 1 | -0/+8 |
| | |||||
* | bpo-42799: fnmatch module: bump up size of lru_cache for patterns (GH-27084) | andrei kulakov | 2021-07-15 | 1 | -0/+3 |
| | |||||
* | bpo-44589: raise a SyntaxError when mapping patterns have duplicate literal ↵ | Jack DeVries | 2021-07-15 | 1 | -4/+5 |
| | | | | keys (GH-27131) | ||||
* | bpo-44473: Update docstring and documentation for QueueHandler.prepar… ↵ | Vinay Sajip | 2021-07-15 | 1 | -2/+6 |
| | | | | | (GH-27140) …e(). | ||||
* | bpo-34932: Add socket.TCP_KEEPALIVE for macOS (GH-25079) | Shane Harvey | 2021-07-14 | 1 | -0/+2 |
| | |||||
* | Add release highlights for the 3.10 what's new document (GH-27150) | Pablo Galindo Salgado | 2021-07-14 | 1 | -1/+29 |
| | |||||
* | bpo-44639: fix typo in sqlite.rst (transation => transaction) (GH-27145) | Jack DeVries | 2021-07-14 | 1 | -1/+1 |
| | | | | | | | To my understanding, this is supposed to say "transaction". See the relevant source: https://github.com/python/cpython/blob/a158b20019b50e3ece6e4743ec4e6ae8d818b690/Modules/_sqlite/connection.c#L1434-L1467 | ||||
* | bpo-33346: Allow async comprehensions inside implicit async comprehensions ↵ | Serhiy Storchaka | 2021-07-13 | 2 | -10/+18 |
| | | | | | (GH-6766) Co-authored-by: Pablo Galindo <pablogsal@gmail.com> | ||||
* | bpo-43126: Expand docs on io.IOBase.readlines() method (#27061) | andrei kulakov | 2021-07-13 | 1 | -0/+3 |
| | | | Co-authored-by: Łukasz Langa <lukasz@langa.pl> | ||||
* | bpo-44514: Add doctest testcleanup for configparser and bz2 (#26909) | Kevin Follstad | 2021-07-13 | 2 | -0/+10 |
| | | | | | Add testcleanup section to configparser and bz2 documentation which removes temporary files created in the filesystem when 'make doctest' is run. | ||||
* | bpo-43950: Add documentation for PEP-657 (GH-27047) | Ammar Askar | 2021-07-13 | 3 | -0/+118 |
| | | | | Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> Co-authored-by: Batuhan Taskaya <batuhanosmantaskaya@gmail.com> | ||||
* | bpo-44613: Make importlib.metadata non-provisional (#27101) | Barry Warsaw | 2021-07-12 | 1 | -4/+2 |
| | | | | * importlib.metadata is no longer provisional as of 3.10 * Add NEWS entry |