gh-150403: Document frozendict in language reference Mappings section#150404
Conversation
Documentation build overview
|
| of items in a mapping. | ||
|
|
||
| There is currently a single intrinsic mapping type: | ||
| There are currently two intrinsic mapping types: |
There was a problem hiding this comment.
No need for "currently", these are the docs for a specific version of Python:
| There are currently two intrinsic mapping types: | |
| There are two intrinsic mapping types: |
There was a problem hiding this comment.
Thank you, applied this.
There was a problem hiding this comment.
I find it odd to remove this one but not the other similar ones on the same page.
There was a problem hiding this comment.
I originally kept "currently" for consistency with other sections such as Set types like you also mentioned. But the point that these docs are for a specific Python version makes sense as well. So, can follow whatever @hugovk recommends here.
|
Thanks @oedokumaci for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.15. |
|
GH-150590 is a backport of this pull request to the 3.15 branch. |
Adds a
Frozen dictionariessubsection to §3.2.7 Mappings, parallel to the existingFrozen setsentry in §3.2.6, and updates the section intro to acknowledge both intrinsic mapping types now thatfrozendictis a built-in.Closes gh-150403.