diff options
Diffstat (limited to 'Lib/regsub.py')
-rw-r--r-- | Lib/regsub.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/regsub.py b/Lib/regsub.py index de833d5..a86819f 100644 --- a/Lib/regsub.py +++ b/Lib/regsub.py @@ -19,6 +19,7 @@ warnings.filterwarnings("ignore", "", DeprecationWarning, __name__) import regex +__all__ = ["sub","gsub","split","splitx","capwords"] # Replace first occurrence of pattern pat in string str by replacement # repl. If the pattern isn't found, the string is returned unchanged. |