summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-10-22 09:46:53 -0400
committerNed Batchelder <ned@nedbatchelder.com>2016-10-22 09:46:53 -0400
commit6c35a5dc1846007f2c1854a8a433e59e534e50cd (patch)
tree511a33e3653089736f2df8c241bb6877aa6d2244
parent824daeebe445065caa96a7092a95cc0247cd245c (diff)
downloadpython-coveragepy-6c35a5dc1846007f2c1854a8a433e59e534e50cd.tar.gz
Downgrading these from TODO
-rw-r--r--coverage/parser.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/coverage/parser.py b/coverage/parser.py
index c3dba83..64461be 100644
--- a/coverage/parser.py
+++ b/coverage/parser.py
@@ -624,12 +624,12 @@ class AstArcAnalyzer(object):
return True
return False
- # tests to write:
- # TODO: while EXPR:
- # TODO: while False:
- # TODO: listcomps hidden deep in other expressions
- # TODO: listcomps hidden in lists: x = [[i for i in range(10)]]
- # TODO: nested function definitions
+ # In the fullness of time, these might be good tests to write:
+ # while EXPR:
+ # while False:
+ # listcomps hidden deep in other expressions
+ # listcomps hidden in lists: x = [[i for i in range(10)]]
+ # nested function definitions
@contract(exits='ArcStarts')
def process_break_exits(self, exits):