mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()
are now removed, since their effect was inexistent in 3.x (the default encoding is hardcoded to utf-8 and cannot be changed).
This commit is contained in:
parent
b0fa831d1e
commit
fce7fd6426
8 changed files with 4 additions and 90 deletions
|
@ -29,10 +29,6 @@ if not os.path.isdir(site.USER_SITE):
|
|||
|
||||
class HelperFunctionsTests(unittest.TestCase):
|
||||
"""Tests for helper functions.
|
||||
|
||||
The setting of the encoding (set using sys.setdefaultencoding) used by
|
||||
the Unicode implementation is not tested.
|
||||
|
||||
"""
|
||||
|
||||
def setUp(self):
|
||||
|
@ -333,10 +329,6 @@ class ImportSideEffectTests(unittest.TestCase):
|
|||
else:
|
||||
self.fail("did not alias mbcs")
|
||||
|
||||
def test_setdefaultencoding_removed(self):
|
||||
# Make sure sys.setdefaultencoding is gone
|
||||
self.assertTrue(not hasattr(sys, "setdefaultencoding"))
|
||||
|
||||
def test_sitecustomize_executed(self):
|
||||
# If sitecustomize is available, it should have been imported.
|
||||
if "sitecustomize" not in sys.modules:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue