[Python-checkins] cpython: Removed duplicated dict entries.

serhiy.storchaka python-checkins at python.org
Sun Jan 11 11:49:17 CET 2015


https://hg.python.org/cpython/rev/5b2212e0c350
changeset:   94106:5b2212e0c350
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sun Jan 11 12:48:17 2015 +0200
summary:
  Removed duplicated dict entries.

files:
  Lib/tokenize.py |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Lib/tokenize.py b/Lib/tokenize.py
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -186,7 +186,6 @@
            "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}

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list