summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-05-30 12:42:25 -0400
committerNed Batchelder <ned@nedbatchelder.com>2022-05-30 12:42:25 -0400
commit73f4a6787b69138f5fe3e682a5cbb08432919e72 (patch)
treee583be5fdcf919f05435321431a370c1c2b483bf
parentf40da644142bd89092e81ef72beaf66687fe9a15 (diff)
downloadpython-coveragepy-git-73f4a6787b69138f5fe3e682a5cbb08432919e72.tar.gz
docs: mentioned pull #1388
-rw-r--r--CHANGES.rst7
-rw-r--r--coverage/pytracer.py7
2 files changed, 7 insertions, 7 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 7dc56b9e..25463fe3 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -21,11 +21,12 @@ Unreleased
----------
- Greatly improved performance on PyPy, and other environments that need the
- pure Python trace function. Thanks, `Carl Friedrich Bolz-Tereick
- <pull 1381_>`_. Slightly improved performance when using the C trace
- function, as most environments do.
+ pure Python trace function. Thanks, Carl Friedrich Bolz-Tereick (`pull
+ 1381`_ and `pull 1388`_). Slightly improved performance when using the C
+ trace function, as most environments do.
.. _pull 1381: https://github.com/nedbat/coveragepy/pull/1381
+.. _pull 1388: https://github.com/nedbat/coveragepy/pull/1388
.. _changes_64:
diff --git a/coverage/pytracer.py b/coverage/pytracer.py
index 4389c9ed..4f138074 100644
--- a/coverage/pytracer.py
+++ b/coverage/pytracer.py
@@ -67,11 +67,10 @@ class PyTracer:
# On exit, self.in_atexit = True
atexit.register(setattr, self, 'in_atexit', True)
- # cache a bound method on the instance, so that we don't have to
- # re-create a bound method object all the time
+ # Cache a bound method on the instance, so that we don't have to
+ # re-create a bound method object all the time.
self._cached_bound_method_trace = self._trace
-
def __repr__(self):
return "<PyTracer at 0x{:x}: {} lines in {} files>".format(
id(self),
@@ -289,7 +288,7 @@ class PyTracer:
dont_warn = (env.PYPY and env.PYPYVERSION >= (5, 4) and self.in_atexit and tf is None)
if (not dont_warn) and tf != self._cached_bound_method_trace: # pylint: disable=comparison-with-callable
self.warn(
- f"Trace function changed, data is likely wrong: "
+ "Trace function changed, data is likely wrong: " +
f"{tf!r} != {self._cached_bound_method_trace!r}",
slug="trace-changed",
)