diff options
Diffstat (limited to 'coverage/python.py')
-rw-r--r-- | coverage/python.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coverage/python.py b/coverage/python.py index 5e56382..07d2347 100644 --- a/coverage/python.py +++ b/coverage/python.py @@ -50,6 +50,8 @@ def get_python_source(filename): # Couldn't find source. raise NoSource("No source for code: '%s'." % filename) + # Replace \f because of http://bugs.python.org/issue19035 + source = source.replace(b'\f', b' ') source = source.decode(source_encoding(source), "replace") # Python code should always end with a line with a newline. |