From: Serhiy Storchaka Date: Sun, 11 Jan 2015 10:48:17 +0000 (+0200) Subject: Removed duplicated dict entries. X-Git-Tag: v3.5.0a1~199 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=845b14cc8ef2d95e72c97a788a1ffb31faeaa3a8;p=thirdparty%2FPython%2Fcpython.git Removed duplicated dict entries. --- diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 51da4847f27d..0659c55a0682 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}