diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-21 11:09:00 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-21 11:09:00 -0500 |
commit | 28e24781321caf223fadd6ac3a11d15edd509fa9 (patch) | |
tree | 5f0adbc893398a123b0500c17b8dfb8259d530e1 | |
parent | 2c007b9a262f909724cc6b45e5796933e61e04c2 (diff) | |
download | python-coveragepy-28e24781321caf223fadd6ac3a11d15edd509fa9.tar.gz |
One more condition to test for phystokens
-rw-r--r-- | test/stress_phystoken.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/stress_phystoken.txt b/test/stress_phystoken.txt index 654225c..7e2f285 100644 --- a/test/stress_phystoken.txt +++ b/test/stress_phystoken.txt @@ -40,6 +40,11 @@ class C(object): cont1 = "one line of text" + \ "another line of text" +a_long_string = + "part 1" \ + "2" \ + "3 is longer" + def hello(): print("Hello world!") |