psf/black repo issues, pull requests, and releases [back to top]
Fix `--target-version` flag for unit tests. #4722 [ranjodhsingh1729] skip news
Description Fixes: #4721. Checklist - did you ... Implement any code style changes under the --preview style,...
In unit tests, specifying the `--target-version` flag raises `AttributeError: 'tuple' object has no attribute 'append'`. #4721 [ranjodhsingh1729] T: bug
Describe the bug In unit tests, specifying the --target-version flag raises AttributeError: 'tuple' object has no...
Remove parentheses around multiple exception types in `except` and `except*` without `as`. #4720 [ranjodhsingh1729]
Description Closes: #4678 Previously, catching multiple exception types required writing: try: โฆ except (A, B,...
Wrap the `in` clause of comprehensions across lines if necessary #4699 [cobaltt7]
Description Fixes #3498 Checklist - did you ... [y] Add an entry in CHANGES.md if necessary? [y] Add / update...
`# fmt: skip` ignored inside multi-part if-clause #4730 [ElkMonster] T: bug
Describe the bug #fmt: skip is ignored in the specific case demonstrated below. Edit: Actually, thinking about it...
Black crashes when multiple `# fmt: skip` are added in a multi-part if-clause. #4731 [ranjodhsingh1729] T: bug
Describe the bug Black crashes on the following valid python code: class ClassWithALongName: Constant1 = 1 ...
Prepare release 25.1.0 #4563 [JelleZijlstra] skip news
Replaced list comprehension and count() with a generator expression #4732 [av-runner]
Description This PR improves the performance of the is_chained_assignment method by replacing a list comprehension...
psf/requests repo issues, pull requests, and releases [back to top]
Add test for RequestsCookieJar zero and empty string value handling #7009 [mefi92]
This pull request adds a test that verifies RequestsCookieJar correctly handles cookies with zero and empty string...
Make the SSL version more human-readable #7007 [mengxunQAQ]
When executing python -m requests.help, the previous format looked like: { "chardet": { "version": null }, ...
python/peps repo issues, pull requests, and releases [back to top]
PEP 738: Adding Android as a supported platform #3586 [mhsmith]
Basic requirements (all PEP Types) Read and followed PEP 1 & PEP 12 File created from the latest PEP template ...
Pep795 take2 #4542 [TobiasWrigstad]
๐ Documentation preview ๐: https://pep-previews--4542.org.readthedocs.build/
PEP 792: Mark as Final #4543 [woodruffw]
Follows pypi/warehouse#18422, which completes the PEP's implementation by enabling it on the index APIs ๐ ๐...
PEP 752: address maintainer feedback #4527 [ofek]
๐ Documentation preview ๐: https://pep-previews--4527.org.readthedocs.build/
PEP 800: Rename to "disjoint base" #4540 [JelleZijlstra]
๐ Documentation preview ๐: https://pep-previews--4540.org.readthedocs.build/
Add python-releases.toml #4331 [AA-Turner] meta
Inspired by #4314, this PR adds a transcription of every Python release since version 1.6 into a single TOML...
PEP 745: Move RC2 earlier and add RC3 #4544 [hugovk]
Because of the magic number...
PEP 101: Add Android #4541 [mhsmith]
For context, see: python/cpython#137242 I also took the opportunity to mention run_release.py and the...
cobaltt7