Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | bpo-46105: Honor spec when generating requirement specs with urls and ↵ | Jason R. Coombs | 2021-12-16 | 3 | -2/+15 | |
| | | | | extras. (GH-30151) | |||||
* | bpo-46044: Annotate deprecated sdists formats (GH-30043) | Matthias Bussonnier | 2021-12-16 | 1 | -19/+22 | |
| | | | | | | While this page have deprecated informations it is still heavily index by Google. Discussed on twitter: https://twitter.com/brettsky/status/1469465729082662916 | |||||
* | Better randomization of stats filenames. (GH-30145) | Mark Shannon | 2021-12-16 | 1 | -2/+14 | |
| | ||||||
* | bpo-22047: [argparse] deprecate nested argument groups and mutually ↵ | Irit Katriel | 2021-12-16 | 4 | -2/+45 | |
| | | | | exclusive groups (GH-30098) | |||||
* | bpo-45755: [typing] Reveal class attributes of generic in generic aliases in ↵ | Ken Jin | 2021-12-16 | 3 | -0/+17 | |
| | | | | `dir()` (GH-29962) | |||||
* | bpo-46072: Document --enable-stats option. (GH-30139) | Mark Shannon | 2021-12-16 | 2 | -0/+11 | |
| | ||||||
* | bpo-45829: Check `__getitem__`'s version for overflow before specializing ↵ | Brandt Bucher | 2021-12-16 | 1 | -1/+1 | |
| | | | | | | | (GH-30129) * Check __getitem__'s version for overflow. * Use SPEC_FAIL_OUT_OF_VERSIONS instead | |||||
* | Fix the output of built-in iter() function example in Iterators (Section ↵ | Vivek Vashist | 2021-12-16 | 1 | -1/+1 | |
| | | | | | 9.8) of The Python Tutorial (GH-30110) Updated the output for it=iter(s) from <iterator object at 0x00A1DB50> to <str_iterator object at 0x10c90e650> | |||||
* | bpo-28816: [doc] clarify that zipimport invokes importers only for python ↵ | Irit Katriel | 2021-12-16 | 1 | -2/+2 | |
| | | | | files (GH-30060) | |||||
* | Remove spaces in empty lines (GH-30121) | AN Long | 2021-12-15 | 3 | -5/+5 | |
| | ||||||
* | bpo-46072: Add --with-pystats configure option to simplify gathering of VM ↵ | Mark Shannon | 2021-12-15 | 9 | -45/+74 | |
| | | | | | | | | | stats (GH-30116) * Simplify specialization stats collection macros. * Add --enable-pystats option to configure. * Update specialization summary script to handle larger number of kinds | |||||
* | bpo-44525: Specialize for calls to type and other builtin classes with 1 ↵ | Mark Shannon | 2021-12-15 | 6 | -40/+105 | |
| | | | | argument. (GH-29942) | |||||
* | Add Positional only arguments forward slash (/) to sorted() function in ↵ | Vivek Vashist | 2021-12-15 | 1 | -1/+1 | |
| | | | | | | | Built-in Functions document (GH-30113) sorted() function is missing forward slash (/) in Built-in Functions documentation page. Automerge-Triggered-By: GH:asvetlov | |||||
* | bpo-46039: Split yield from in two (GH-30035) | Mark Shannon | 2021-12-15 | 10 | -53/+91 | |
| | | | | | | * Split YIELD_FROM opcode into SEND and JUMP_ABSOLUTE. * Remove YIELD_FROM opcode. | |||||
* | bpo-26952: [argparse] clearer error when formatting an empty mutually… ↵ | Irit Katriel | 2021-12-15 | 3 | -0/+11 | |
| | | | | (GH-30099) | |||||
* | Document new call opcodes for 3.11 (GH-30107) | Mark Shannon | 2021-12-14 | 1 | -3/+5 | |
| | ||||||
* | bpo-44525: Split calls into PRECALL and CALL (GH-30011) | Mark Shannon | 2021-12-14 | 15 | -236/+395 | |
| | | | | | | | | | | * Add 3 new opcodes for calls: PRECALL_METHOD, CALL_NO_KW, CALL_KW. * Update specialization to handle new CALL opcodes. * Specialize call to method descriptors. * Remove old CALL opcodes: CALL_FUNCTION, CALL_METHOD, CALL_METHOD_KW, CALL_FUNCTION_KW. | |||||
* | bpo-45292: [PEP-654] add except* (GH-29581) | Irit Katriel | 2021-12-14 | 34 | -1853/+5591 | |
| | ||||||
* | bpo-46063: Add 'delay=True' to file handler initialization. (GH-30103) | Vinay Sajip | 2021-12-14 | 1 | -1/+2 | |
| | ||||||
* | bpo-46059: Clarify pattern-matching example in "control flow" docs (GH-30079) | Alex Waygood | 2021-12-14 | 1 | -3/+5 | |
| | | | | | The "Color" example in the pattern-matching section of the "control flow" documentation is not immediately runnable, leading to confusion. Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> | |||||
* | bpo-46023: Skip build if module is marked as DISABLED (GH-30100) | Christian Heimes | 2021-12-14 | 2 | -1/+5 | |
| | ||||||
* | bpo-23469: Delete Wing IDE configuration files (GH-30067) | Kumar Aditya | 2021-12-14 | 4 | -50/+0 | |
| | ||||||
* | bpo-45919: Remove out of date comment (GH-30090) | Dong-hee Na | 2021-12-14 | 1 | -2/+4 | |
| | ||||||
* | bpo-45953: Statically initialize the small ints. (gh-30092) | Eric Snow | 2021-12-14 | 9 | -81/+360 | |
| | | | | | | | The array of small PyLong objects has been statically declared. Here I also statically initialize them. Consequently they are no longer initialized dynamically during runtime init. I've also moved them under a new sub-struct in _PyRuntimeState, in preparation for static allocation and initialization of other global objects. https://bugs.python.org/issue45953 | |||||
* | bpo-46063: Improve algorithm for computing which rolled-over log file… ↵ | Vinay Sajip | 2021-12-14 | 3 | -5/+83 | |
| | | | | (GH-30093) | |||||
* | bpo-45949: Pure Python freeze module for cross builds (GH-29899) | Christian Heimes | 2021-12-13 | 9 | -115/+205 | |
| | ||||||
* | bpo-45643: Add signal.SIGSTKFLT on platforms where this is defined (GH-29266) | Gareth Rees | 2021-12-13 | 3 | -0/+14 | |
| | ||||||
* | bpo-45919: Use WinAPI GetFileType() in is_valid_fd() (GH-30082) | Dong-hee Na | 2021-12-13 | 1 | -12/+10 | |
| | ||||||
* | Clarify new_event_loop return value. (GH-30078) | Paul Bryan | 2021-12-13 | 1 | -1/+1 | |
| | ||||||
* | bpo-16594: Add allow_reuse_port on socketserver (GH-30072) | AN Long | 2021-12-13 | 2 | -0/+9 | |
| | | | | | | | * bpo-16594: Add allow_reuse_port on socketserver * 📜🤖 Added by blurb_it. Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> | |||||
* | bpo-37602: Clarify that the lib2to3 nonzero fixer changes only definitions ↵ | Irit Katriel | 2021-12-13 | 1 | -1/+2 | |
| | | | | (GH-30075) | |||||
* | bpo-27718: Fix help for the signal module (GH-30063) | Serhiy Storchaka | 2021-12-13 | 3 | -3/+21 | |
| | | | | | | | Functions signal(), getsignal(), pthread_sigmask(), sigpending(), sigwait() and valid_signals() were omitted. If __all__ is not defined all non-builtin functions should have correct __module__. | |||||
* | Remove erroneous padding in dataclasses (GH-30076) | Andre Delfino | 2021-12-12 | 1 | -63/+63 | |
| | | | Automerge-Triggered-By: GH:ericvsmith | |||||
* | bpo-46054: Correct non-utf8 character tests in test_exceptions (GH-30074) | Pablo Galindo Salgado | 2021-12-12 | 1 | -2/+2 | |
| | ||||||
* | bpo-45855: document that `no_block` has no use anymore in PyCapsule_Import ↵ | Georg Brandl | 2021-12-12 | 3 | -10/+9 | |
| | | | | (#29665) | |||||
* | Re-add `reuse_address` parameter to `create_server` (GH-29733) | Jim Crist-Harif | 2021-12-12 | 1 | -0/+6 | |
| | | | | | | | This parameter was accidentally removed when fixing https://bugs.python.org/issue45129, this reverts the unnecessary changes there. Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com> | |||||
* | bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with ↵ | Kumar Aditya | 2021-12-12 | 12 | -16/+17 | |
| | | | | PyImport_ImportModule (GH-30046) | |||||
* | bpo-45874: Handle empty query string correctly in urllib.parse.parse_qsl ↵ | Christian Sattler | 2021-12-12 | 3 | -3/+7 | |
| | | | | (#29716) | |||||
* | bpo-46054: Fix parsing error when parsing non-utf8 characters in source ↵ | Pablo Galindo Salgado | 2021-12-12 | 3 | -8/+19 | |
| | | | | files (GH-30068) | |||||
* | bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059) | Pablo Galindo Salgado | 2021-12-11 | 4 | -65/+98 | |
| | ||||||
* | bpo-44674: Use unhashability as a proxy for mutability for default dataclass ↵ | Eric V. Smith | 2021-12-11 | 4 | -5/+45 | |
| | | | | | __init__ arguments. (GH-29867) `@dataclass` in 3.10 prohibits using list, dict, or set as default values. It does this to avoid the mutable default problem. This test is both too strict, and not strict enough. Too strict, because some immutable subclasses should be safe, and not strict enough, because other mutable types should be prohibited. With this change applied, `@dataclass` now uses unhashability as a proxy for mutability: if objects aren't hashable, they're assumed to be mutable. | |||||
* | bpo-46049: Fixes ._pth support on non-Windows (GH-30051) | Steve Dower | 2021-12-11 | 4 | -41/+52 | |
| | ||||||
* | bpo-46048: Fix parsing of single character lines in getpath readlines() ↵ | Steve Dower | 2021-12-11 | 3 | -3/+25 | |
| | | | | (GH-30048) | |||||
* | bpo-19737: Improved the documentation for globals (GH-29823) | 180909 | 2021-12-11 | 2 | -3/+4 | |
| | | | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl> | |||||
* | build(deps): bump actions/cache from 2.1.6 to 2.1.7 (GH-29875) | dependabot[bot] | 2021-12-10 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.6...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | |||||
* | bpo-37971: fix the position of decorator application (GH-30027) | Carl Friedrich Bolz-Tereick | 2021-12-10 | 4 | -11/+76 | |
| | | | | | | | The line numbers of actually calling the decorator functions of functions and classes was wrong (as opposed to loading them, were they have been correct previously too). Co-authored-by: Łukasz Langa <lukasz@langa.pl> | |||||
* | bpo-42918: Improve build-in function compile() in mode 'single' (GH-29934) | Weipeng Hong | 2021-12-10 | 3 | -19/+6 | |
| | | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> | |||||
* | bpo-43795: Document stable_abi.txt format and contents (GH-29956) | Petr Viktorin | 2021-12-10 | 2 | -0/+41 | |
| | | | Also mention that removals generally aren't allowed. | |||||
* | bpo-46014: Add ability to use typing.Union with singledispatch (GH-30017) | Yurii Karabas | 2021-12-10 | 3 | -7/+60 | |
| | ||||||
* | bpo-27062: add `__all__` to inspect module (GH-30003) | Kumar Aditya | 2021-12-10 | 3 | -1/+104 | |
| |