mirror of
https://github.com/python/cpython.git
synced 2025-11-03 15:11:34 +00:00
bpo-35213: Where appropriate, use 'macOS' in idlelib. (#10478)
This commit is contained in:
parent
70f61b933f
commit
b65413b497
6 changed files with 28 additions and 28 deletions
|
|
@ -41,7 +41,7 @@
|
|||
# these problems, falling back to ASCII
|
||||
locale_encoding = locale.nl_langinfo(locale.CODESET)
|
||||
if locale_encoding is None or locale_encoding == '':
|
||||
# situation occurs on Mac OS X
|
||||
# situation occurs on macOS
|
||||
locale_encoding = 'ascii'
|
||||
codecs.lookup(locale_encoding)
|
||||
except (NameError, AttributeError, LookupError):
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
try:
|
||||
locale_encoding = locale.getdefaultlocale()[1]
|
||||
if locale_encoding is None or locale_encoding == '':
|
||||
# situation occurs on Mac OS X
|
||||
# situation occurs on macOS
|
||||
locale_encoding = 'ascii'
|
||||
codecs.lookup(locale_encoding)
|
||||
except (ValueError, LookupError):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue