Skip to content

Commit 081871e

Browse files
Files weren't saved after code refactoring.
1 parent 15765b6 commit 081871e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/wrapt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__version_info__ = ('1', '16', '0rc2')
22
__version__ = '.'.join(__version_info__)
33

4-
from .variants import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
4+
from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
55
BoundFunctionWrapper, PartialCallableObjectProxy)
66

77
from .patches import (resolve_path, apply_patch, wrap_object, wrap_object_attribute,

src/wrapt/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def exec_(_code_, _globs_=None, _locs_=None):
4141
except ImportError:
4242
pass
4343

44-
from .variants import (FunctionWrapper, BoundFunctionWrapper, ObjectProxy,
44+
from .__wrapt__ import (FunctionWrapper, BoundFunctionWrapper, ObjectProxy,
4545
CallableObjectProxy)
4646

4747
# Adapter wrapper for the wrapped function which will overlay certain

src/wrapt/importer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
string_types = str,
1616
from importlib.util import find_spec
1717

18-
from .variants import ObjectProxy
18+
from .__wrapt__ import ObjectProxy
1919

2020
# The dictionary registering any post import hooks to be triggered once
2121
# the target module has been imported. Once a module has been imported

src/wrapt/patches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
else:
99
string_types = str,
1010

11-
from .variants import FunctionWrapper
11+
from .__wrapt__ import FunctionWrapper
1212

1313
# Helper functions for applying wrappers to existing functions.
1414

src/wrapt/weakrefs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import functools
22
import weakref
33

4-
from .variants import ObjectProxy, _FunctionWrapperBase
4+
from .__wrapt__ import ObjectProxy, _FunctionWrapperBase
55

66
# A weak function proxy. This will work on instance methods, class
77
# methods, static methods and regular functions. Special treatment is

0 commit comments

Comments
 (0)