diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-11 10:48:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-11 10:48:17 (GMT) |
commit | 845b14cc8ef2d95e72c97a788a1ffb31faeaa3a8 (patch) | |
tree | f6e8e7532b356b9dd571e2369dce6381e5822530 /Lib/tokenize.py | |
parent | e9694398625f2c82c078aed4d891987474a87e0e (diff) | |
download | cpython-845b14cc8ef2d95e72c97a788a1ffb31faeaa3a8.zip cpython-845b14cc8ef2d95e72c97a788a1ffb31faeaa3a8.tar.gz cpython-845b14cc8ef2d95e72c97a788a1ffb31faeaa3a8.tar.bz2 |
Removed duplicated dict entries.
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r-- | Lib/tokenize.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 51da484..0659c55 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py @@ -186,7 +186,6 @@ endpats = {"'": Single, '"': Double, "rB'''": Single3, 'rB"""': Double3, "RB'''": Single3, 'RB"""': Double3, "u'''": Single3, 'u"""': Double3, - "R'''": Single3, 'R"""': Double3, "U'''": Single3, 'U"""': Double3, 'r': None, 'R': None, 'b': None, 'B': None, 'u': None, 'U': None} |