diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-21 09:59:43 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-21 09:59:43 -0500 |
| commit | 2c31e11ba195a336e1b037f42907cd2e1c53e096 (patch) | |
| tree | fa87019ede4432baa4a6f5487ec34bffdcffdebe /test/stress_phystoken.txt | |
| parent | 6f4a40d34152b7d99be35f4127e76c8beb4d6c06 (diff) | |
| download | python-coveragepy-git-2c31e11ba195a336e1b037f42907cd2e1c53e096.tar.gz | |
Handle one more bizarro edge case in tokenizing source: I couldn't look at my own phystokens.py file properly!
Diffstat (limited to 'test/stress_phystoken.txt')
| -rw-r--r-- | test/stress_phystoken.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/stress_phystoken.txt b/test/stress_phystoken.txt index bd6a453a..654225c3 100644 --- a/test/stress_phystoken.txt +++ b/test/stress_phystoken.txt @@ -19,6 +19,17 @@ fake_back = """\ ouch """ +# Lots of difficulty happens with code like: +# +# fake_back = """\ +# ouch +# """ +# +# Ugh, the edge cases... + +# What about a comment like this\ +"what's this string doing here?" + class C(object): def there(): this = 5 + \ |
