-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
gh-62824: Add alias for iso-8859-8-i which is the same as iso-8859-8 #134306
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
gh-62824: Add alias for iso-8859-8-i which is the same as iso-8859-8 #134306
Conversation
Based on @malemburg's comment on #32279, I'm landing this. |
Thanks @basbloemsaat for the PR, and @ambv for merging it 🌮🎉.. I'm working now to backport this PR to: 3.14. |
…859-8 (pythongh-134306) (cherry picked from commit 5ab66a8) Co-authored-by: Bas Bloemsaat <bas@bloemsaat.com> Co-authored-by: David Goncalves <davegoncalves@gmail.com> Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
GH-134330 is a backport of this pull request to the 3.14 branch. |
def test_alias_modules_exist(self): | ||
encodings_dir = os.path.dirname(encodings.__file__) | ||
for value in encodings.aliases.aliases.values(): | ||
codec_file = os.path.join(encodings_dir, value + ".py") | ||
self.assertTrue(os.path.isfile(codec_file), | ||
"Codec file not found: " + codec_file) |
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.
A follow-up for this test: #134777
We see failures when running this in Fedora with installed Python 3.14.0b2.
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.
Thanks. I'll have a look.
Uh oh!
There was an error while loading. Please reload this page.