mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371)
_PyCoreConfig: * Rename coerce_c_locale to _coerce_c_locale * Rename coerce_c_locale_warn to _coerce_c_locale_warn These fields are now private (name prefixed by "_").
This commit is contained in:
parent
c62ab2862d
commit
188ebfa475
7 changed files with 46 additions and 32 deletions
|
|
@ -277,8 +277,6 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):
|
|||
'filesystem_errors': None,
|
||||
|
||||
'utf8_mode': 0,
|
||||
'coerce_c_locale': 0,
|
||||
'coerce_c_locale_warn': 0,
|
||||
|
||||
'pycache_prefix': NULL_STR,
|
||||
'program_name': './_testembed',
|
||||
|
|
@ -306,6 +304,8 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):
|
|||
'_install_importlib': 1,
|
||||
'_check_hash_pycs_mode': 'default',
|
||||
'_frozen': 0,
|
||||
'_coerce_c_locale': 0,
|
||||
'_coerce_c_locale_warn': 0,
|
||||
}
|
||||
|
||||
def get_stdio_encoding(self, env):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue