summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-10-14 23:07:40 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-10-14 23:07:40 (GMT)
commit6c940d6159d6f0a21f664b58b3aa0098041203e1 (patch)
tree7e3f481f85c51f4f20b69174092862b09dc640cd
parentf63921f9d00bb5dd4a2ec0f95e8f395fc0aa58f4 (diff)
downloadcpython-6c940d6159d6f0a21f664b58b3aa0098041203e1.zip
cpython-6c940d6159d6f0a21f664b58b3aa0098041203e1.tar.gz
cpython-6c940d6159d6f0a21f664b58b3aa0098041203e1.tar.bz2
Merged revisions 66894 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66894 | benjamin.peterson | 2008-10-14 17:37:18 -0500 (Tue, 14 Oct 2008) | 1 line remove set compat cruft ........
-rw-r--r--Lib/sre_compile.py6
-rw-r--r--Lib/sre_parse.py6
2 files changed, 0 insertions, 12 deletions
diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py
index 3d74c3a..47e1701 100644
--- a/Lib/sre_compile.py
+++ b/Lib/sre_compile.py
@@ -24,12 +24,6 @@ else:
def _identityfunction(x):
return x
-def set(seq):
- s = {}
- for elem in seq:
- s[elem] = 1
- return s
-
_LITERAL_CODES = set([LITERAL, NOT_LITERAL])
_REPEATING_CODES = set([REPEAT, MIN_REPEAT, MAX_REPEAT])
_SUCCESS_CODES = set([SUCCESS, FAILURE])
diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py
index 9d6e631..bc71b58 100644
--- a/Lib/sre_parse.py
+++ b/Lib/sre_parse.py
@@ -16,12 +16,6 @@ import sys
from sre_constants import *
-def set(seq):
- s = {}
- for elem in seq:
- s[elem] = 1
- return s
-
SPECIAL_CHARS = ".\\[{()*+?^$|"
REPEAT_CHARS = "*+?{"