diff options
| author | 2020-02-09 10:49:10 +0000 | |
|---|---|---|
| committer | 2020-02-09 10:49:18 +0000 | |
| commit | 29f0a282a8efb9ea93d33670ad42f1c151f70243 (patch) | |
| tree | 4b3e2b6048d78cc5bf3b70e6a5a6e3b28e7bb8a2 /src/utils/parse/__init__.py | |
| parent | add ModuleManager.try_reload_module(), use it for !reloadmodule (diff) | |
| signature | ||
add utils.parse.sed.
Diffstat (limited to 'src/utils/parse/__init__.py')
| -rw-r--r-- | src/utils/parse/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils/parse/__init__.py b/src/utils/parse/__init__.py index cf32d8f5..dd13ecbc 100644 --- a/src/utils/parse/__init__.py +++ b/src/utils/parse/__init__.py @@ -1,9 +1,10 @@ -import decimal, io, typing +import decimal, io, re, typing from src.utils import datetime, errors from .spec import * from .time import duration from .types import try_int +from . import sed COMMENT_TYPES = ["#", "//"] def hashflags(filename: str |
