formatize 1.0.5__tar.gz → 1.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {formatize-1.0.5 → formatize-1.0.6}/PKG-INFO +1 -1
- {formatize-1.0.5 → formatize-1.0.6}/setup.cfg +1 -1
- {formatize-1.0.5 → formatize-1.0.6}/src/formatize/__init__.py +1 -1
- {formatize-1.0.5 → formatize-1.0.6}/src/formatize/form.py +1 -1
- {formatize-1.0.5 → formatize-1.0.6}/src/formatize.egg-info/PKG-INFO +1 -1
- {formatize-1.0.5 → formatize-1.0.6}/LICENSE +0 -0
- {formatize-1.0.5 → formatize-1.0.6}/README.md +0 -0
- {formatize-1.0.5 → formatize-1.0.6}/pyproject.toml +0 -0
- {formatize-1.0.5 → formatize-1.0.6}/src/formatize/const.py +0 -0
- {formatize-1.0.5 → formatize-1.0.6}/src/formatize.egg-info/SOURCES.txt +0 -0
- {formatize-1.0.5 → formatize-1.0.6}/src/formatize.egg-info/dependency_links.txt +0 -0
- {formatize-1.0.5 → formatize-1.0.6}/src/formatize.egg-info/requires.txt +0 -0
- {formatize-1.0.5 → formatize-1.0.6}/src/formatize.egg-info/top_level.txt +0 -0
|
@@ -647,7 +647,7 @@ def add_class_to_nested_module (module, class_name, cls):
|
|
|
647
647
|
setattr(module, class_name, cls)
|
|
648
648
|
|
|
649
649
|
def frender (non_f_str: str):
|
|
650
|
-
return eval(f'f"""{non_f_str}"""')
|
|
650
|
+
return eval(f'f"""{non_f_str}"""', globals())
|
|
651
651
|
|
|
652
652
|
def punctescape (text: str) -> str:
|
|
653
653
|
return re.compile(f'[{re.escape(string.punctuation)}]').sub('', text)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|