summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst4
-rw-r--r--doc/changes.rst4
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 833ffa8c..6f78f477 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -12,12 +12,12 @@ Version 4.1b1 --- 2016-01-10
- Branch analysis has been rewritten: it used to be based on bytecode, but now
uses AST analysis. This has changed a number of things:
- - More code paths are now considered runnable, especially in `try`/`except`
+ - More code paths are now considered runnable, especially in ``try``/``except``
structures. This may mean that coverage.py will identify more code paths
as uncovered. This could either raise or lower your overall coverage
number.
- - Python 3.5's `async` and `await` keywords are properly supported, fixing
+ - Python 3.5's ``async`` and ``await`` keywords are properly supported, fixing
`issue 434`_.
- A some long-standing branch coverage bugs were fixed:
diff --git a/doc/changes.rst b/doc/changes.rst
index 9664cc04..e2f65b31 100644
--- a/doc/changes.rst
+++ b/doc/changes.rst
@@ -55,12 +55,12 @@ Version 4.1b1 pre-release --- 2016-01-10
- Branch analysis has been rewritten: it used to be based on bytecode, but now
uses AST analysis. This has changed a number of things:
- - More code paths are now considered runnable, especially in `try`/`except`
+ - More code paths are now considered runnable, especially in ``try``/``except``
structures. This may mean that coverage.py will identify more code paths
as uncovered. This could either raise or lower your overall coverage
number.
- - Python 3.5's `async` and `await` keywords are properly supported, fixing
+ - Python 3.5's ``async`` and ``await`` keywords are properly supported, fixing
`issue 434`_.
- A some long-standing branch coverage bugs were fixed: