Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.

This commit is contained in:
Neal Norwitz 2006-03-16 06:50:13 +00:00
parent efbeaef1c1
commit 10be10cbe7
69 changed files with 73 additions and 7120 deletions

View file

@ -21,7 +21,7 @@
import sys
import regex
import re
import os
@ -57,8 +57,8 @@ def main():
# Compiled regular expressions to search for import statements
#
m_import = regex.compile('^[ \t]*from[ \t]+\([^ \t]+\)[ \t]+')
m_from = regex.compile('^[ \t]*import[ \t]+\([^#]+\)')
m_import = re.compile('^[ \t]*from[ \t]+([^ \t]+)[ \t]+')
m_from = re.compile('^[ \t]*import[ \t]+([^#]+)')
# Collect data from one file