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 | 9ce4e0e787c7e8f028a2c2f56c50b6d8f663e88c (patch) | |
tree | 11c524104b6237f24a905c21ab2d0041f76206be | |
parent | 5e481a990dffeb908e8ed22b2a057f2f0d2c99aa (diff) | |
download | python-coveragepy-git-9ce4e0e787c7e8f028a2c2f56c50b6d8f663e88c.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 654225c3..7e2f2858 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!") |