summaryrefslogtreecommitdiff
path: root/coverage/python.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-01-05 14:48:41 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-01-05 14:48:41 -0500
commit3e2625dd17674339073c6afc4da6ba3b99932e4c (patch)
treea33fc165730c677dc719c2b141e9712996f59555 /coverage/python.py
parenta3b1ce5cdad7b61ac667a80fdff7b7928310ed45 (diff)
downloadpython-coveragepy-3e2625dd17674339073c6afc4da6ba3b99932e4c.tar.gz
Fix another form-feed problem, #461
Diffstat (limited to 'coverage/python.py')
-rw-r--r--coverage/python.py2
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.