mirror of https://github.com/python/cpython
regrtest: log FS and locale encodings
This commit is contained in:
parent
f8cb8a16a3
commit
b96ef55d49
|
@ -1,5 +1,6 @@
|
||||||
import datetime
|
import datetime
|
||||||
import faulthandler
|
import faulthandler
|
||||||
|
import locale
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import random
|
import random
|
||||||
|
@ -392,7 +393,10 @@ class Regrtest:
|
||||||
"%s-endian" % sys.byteorder)
|
"%s-endian" % sys.byteorder)
|
||||||
print("== ", "hash algorithm:", sys.hash_info.algorithm,
|
print("== ", "hash algorithm:", sys.hash_info.algorithm,
|
||||||
"64bit" if sys.maxsize > 2**32 else "32bit")
|
"64bit" if sys.maxsize > 2**32 else "32bit")
|
||||||
print("== ", os.getcwd())
|
print("== cwd:", os.getcwd())
|
||||||
|
print("== encodings: locale=%s, FS=%s"
|
||||||
|
% (locale.getpreferredencoding(False),
|
||||||
|
sys.getfilesystemencoding()))
|
||||||
print("Testing with flags:", sys.flags)
|
print("Testing with flags:", sys.flags)
|
||||||
|
|
||||||
if self.ns.randomize:
|
if self.ns.randomize:
|
||||||
|
|
Loading…
Reference in New Issue