[backport to 3.5] bpo-29474: Improve documentation for weakref.WeakValueDictionary#23
Merged
Mariatta merged 1 commit intopython:3.5from Feb 12, 2017
Merged
Conversation
There were some grammatical errors in weakref.WeakValueDictionary documentation.
Codecov Report
@@ Coverage Diff @@
## 3.5 #23 +/- ##
======================================
Coverage ? 82.37%
======================================
Files ? 1427
Lines ? 350948
Branches ? 0
======================================
Hits ? 289093
Misses ? 61855
Partials ? 0Continue to review full report at Codecov.
|
zware
approved these changes
Feb 12, 2017
jaraco
pushed a commit
to jaraco/cpython
that referenced
this pull request
Feb 17, 2023
This is one of the two approved incoming PSF licenses. Closes python#23
nanjekyejoannah
added a commit
to nanjekyejoannah/cpython
that referenced
this pull request
Mar 10, 2023
Eclips4
pushed a commit
to Eclips4/cpython
that referenced
this pull request
Mar 10, 2026
This PR pretty much completely refactors the Rust build system. There are now two main ways Rust code is built: # both - The Rust triple is deduced based on the preprocessor run on Misc/platform_triplet.c - A cpython-build-helper crate is used to pass the proper link arguments for each configuration - The proper Rust toolchain is downloaded for iOS/Android/WASI for CI on those platforms - cpython-sys is updated significantly to ensure bindgen properly generates the bindings for each platform # shared For shared builds, we build a crate into a cdylib and pass through link arguments from the makefile/configure and the linker executable so that the final link will match what is done for C programs. # static For static builds, a cpython-rust-staticlib crate is a built which depends on and re-exports the module initializers for each crate. This ensures there aren't duplicated Rust stdlib/core symbols. Fixes python#23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There were some grammatical errors in weakref.WeakValueDictionary
documentation.
Same as #10, backported to 3.5 branch