From: Raymond Hettinger Date: Mon, 4 Aug 2014 07:21:11 +0000 (-0700) Subject: Remove unused leftover stray line X-Git-Tag: v3.4.2rc1~155 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c6f22cc0a6ace52d7d3075f36c9e65f7da194212;p=python Remove unused leftover stray line --- diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 48495a25c5..edb24864f2 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -1346,7 +1346,6 @@ successive matches:: ('MISMATCH',r'.'), # Any other character ] tok_regex = '|'.join('(?P<%s>%s)' % pair for pair in token_specification) - get_token = re.compile(tok_regex).match line_num = 1 line_start = 0 for mo in re.finditer(tok_regex, code):