mirror of
https://github.com/python/cpython.git
synced 2025-07-31 15:14:22 +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
|
@ -22,7 +22,7 @@
|
|||
import sys
|
||||
import os
|
||||
import getopt
|
||||
import regex
|
||||
import re
|
||||
|
||||
# Types of symbols.
|
||||
#
|
||||
|
@ -32,7 +32,7 @@ ignore = 'Nntrgdsbavuc'
|
|||
|
||||
# Regular expression to parse "nm -o" output.
|
||||
#
|
||||
matcher = regex.compile('\(.*\):\t?........ \(.\) \(.*\)$')
|
||||
matcher = re.compile('(.*):\t?........ (.) (.*)$')
|
||||
|
||||
# Store "item" in "dict" under "key".
|
||||
# The dictionary maps keys to lists of items.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue