mirror of
https://github.com/python/cpython.git
synced 2025-07-30 06:34:15 +00:00
Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.
This commit is contained in:
parent
efbeaef1c1
commit
10be10cbe7
69 changed files with 73 additions and 7120 deletions
|
@ -8,10 +8,10 @@
|
|||
|
||||
import os
|
||||
import sys
|
||||
import regex
|
||||
import re
|
||||
|
||||
pat = '^\([^: \t\n]+\):\([1-9][0-9]*\):'
|
||||
prog = regex.compile(pat)
|
||||
pat = '^([^: \t\n]+):([1-9][0-9]*):'
|
||||
prog = re.compile(pat)
|
||||
|
||||
class FileObj:
|
||||
def __init__(self, filename):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue