From a5e8362aa4d30767f07cb7bbf7b82269cf484f40 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 23 Dec 2018 12:32:55 -0500 Subject: Include default encodings in the debug output --- coverage/control.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'coverage') diff --git a/coverage/control.py b/coverage/control.py index 2eeec85c..ea6698d4 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -873,6 +873,8 @@ class Coverage(object): ('platform', platform.platform()), ('implementation', platform.python_implementation()), ('executable', sys.executable), + ('def_encoding', sys.getdefaultencoding()), + ('fs_encoding', sys.getfilesystemencoding()), ('pid', os.getpid()), ('cwd', os.getcwd()), ('path', sys.path), -- cgit v1.2.1