-
-
Notifications
You must be signed in to change notification settings - Fork 34.7k
Use the :abbr: role for BMP (Basic Multilingual Plane) #150673
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
+11
−6
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -115,7 +115,8 @@ xml | |||||
| * Add support for multiple multi-byte encodings in the :mod:`XML parser | ||||||
| <xml.parsers.expat>`: "cp932", "cp949", "cp950", "Big5","EUC-JP", | ||||||
| "GB2312", "GBK", "johab", and "Shift_JIS". | ||||||
| Add partial support (only BMP characters) for multi-byte encodings | ||||||
| Add partial support (only the :abbr:`BMP (Basic Multilingual Plane)` | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| characters) for multi-byte encodings | ||||||
| "Big5-HKSCS", "EUC_JIS-2004", "EUC_JISX0213", "Shift_JIS-2004", | ||||||
| "Shift_JISX0213", "utf-8-sig" and non-standard aliases like "UTF8" | ||||||
| (without hyphen). | ||||||
|
|
||||||
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -262,7 +262,8 @@ The storage of Unicode strings now depends on the highest code point in the stri | |||||
|
|
||||||
| * pure ASCII and Latin1 strings (``U+0000-U+00FF``) use 1 byte per code point; | ||||||
|
|
||||||
| * BMP strings (``U+0000-U+FFFF``) use 2 bytes per code point; | ||||||
| * :abbr:`BMP (Basic Multilingual Plane)` strings (``U+0000-U+FFFF``) use | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| 2 bytes per code point; | ||||||
|
|
||||||
| * non-BMP strings (``U+10000-U+10FFFF``) use 4 bytes per code point. | ||||||
|
|
||||||
|
|
||||||
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
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -868,7 +868,8 @@ window are shown and hidden in the Options menu. | |||||
| (Contributed by Tal Einat and Saimadhav Heblikar in :issue:`17535`.) | ||||||
|
|
||||||
| OS native encoding is now used for converting between Python strings and Tcl | ||||||
| objects. This allows IDLE to work with emoji and other non-BMP characters. | ||||||
| objects. This allows IDLE to work with emoji and other characters that are not | ||||||
| in the :abbr:`BMP (Basic Multilingual Plane)`. | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| These characters can be displayed or copied and pasted to or from the | ||||||
| clipboard. Converting strings from Tcl to Python and back now never fails. | ||||||
| (Many people worked on this for eight years but the problem was finally | ||||||
|
|
||||||
2 changes: 1 addition & 1 deletion
2
Misc/NEWS.d/next/Library/2026-05-14-17-01-19.gh-issue-62259.ytlFD5.rst
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
Oops, something went wrong.
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 was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.