-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update wrapt to 1.16.0 * Import duplicate functions directly from wrapt * Update object wrappers for wrapt 1.16.0 * Add warning to wrapt duplicate code * Linting * Use super rather than hard coded Object proxy * Formatting * Add test file for wrapper attributes * Linting * Add descriptions to assertions * Overhaul test suite for clarity * Move functions into fixtures * [Mega-Linter] Apply linters fixes * Bump tests * Fix typo * Larger timeout for protobuf --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: TimPansino <TimPansino@users.noreply.github.com>
- Loading branch information
1 parent
cd74bc4
commit 030cfc9
Showing
11 changed files
with
552 additions
and
490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import os | ||
|
||
from .wrappers import (ObjectProxy, CallableObjectProxy, | ||
PartialCallableObjectProxy, FunctionWrapper, | ||
BoundFunctionWrapper, _FunctionWrapperBase) | ||
|
||
try: | ||
if not os.environ.get('WRAPT_DISABLE_EXTENSIONS'): | ||
from ._wrappers import (ObjectProxy, CallableObjectProxy, | ||
PartialCallableObjectProxy, FunctionWrapper, | ||
BoundFunctionWrapper, _FunctionWrapperBase) | ||
|
||
except ImportError: | ||
pass |
Oops, something went wrong.