summaryrefslogtreecommitdiff
path: root/venv/Lib/site-packages/wrapt/__init__.py
diff options
context:
space:
mode:
authorpravindalve2023-05-30 04:20:14 +0530
committerGitHub2023-05-30 04:20:14 +0530
commitcbdd7ca21f1f673a3a739065098f7cc6c9c4b881 (patch)
tree595e888c38f00a314e751096b6bf636a544a5efe /venv/Lib/site-packages/wrapt/__init__.py
parent7740d1ca0c2e6bf34900460b0c58fa4d528577fb (diff)
parent280c6aa89a15331fb76b7014957953dc72af6093 (diff)
downloadChemical-Simulator-GUI-master.tar.gz
Chemical-Simulator-GUI-master.tar.bz2
Chemical-Simulator-GUI-master.zip
Merge pull request #63 from brenda-br/Fix-35HEADmaster
Restructure Project and Deployment
Diffstat (limited to 'venv/Lib/site-packages/wrapt/__init__.py')
-rw-r--r--venv/Lib/site-packages/wrapt/__init__.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/venv/Lib/site-packages/wrapt/__init__.py b/venv/Lib/site-packages/wrapt/__init__.py
deleted file mode 100644
index 8e858a0..0000000
--- a/venv/Lib/site-packages/wrapt/__init__.py
+++ /dev/null
@@ -1,16 +0,0 @@
-__version_info__ = ('1', '11', '2')
-__version__ = '.'.join(__version_info__)
-
-from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
- BoundFunctionWrapper, WeakFunctionProxy, PartialCallableObjectProxy,
- resolve_path, apply_patch, wrap_object, wrap_object_attribute,
- function_wrapper, wrap_function_wrapper, patch_function_wrapper,
- transient_function_wrapper)
-
-from .decorators import (adapter_factory, AdapterFactory, decorator,
- synchronized)
-
-from .importer import (register_post_import_hook, when_imported,
- notify_module_loaded, discover_post_import_hooks)
-
-from inspect import getcallargs