Skip to content

Commit

Permalink
Upgrade wrapt.
Browse files Browse the repository at this point in the history
  • Loading branch information
newrelic-opensource committed Aug 31, 2020
1 parent be13182 commit f874a52
Show file tree
Hide file tree
Showing 8 changed files with 662 additions and 349 deletions.
2 changes: 1 addition & 1 deletion THIRD_PARTY_NOTICES.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Distributed under the following license(s):

## [wrapt](https://pypi.org/project/wrapt)

Copyright (c) 2013-2017, Graham Dumpleton
Copyright (c) 2013-2019, Graham Dumpleton
All rights reserved.

Distributed under the following license(s):
Expand Down
2 changes: 1 addition & 1 deletion newrelic/packages/wrapt/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-2017, Graham Dumpleton
Copyright (c) 2013-2019, Graham Dumpleton
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
13 changes: 5 additions & 8 deletions newrelic/packages/wrapt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
__version_info__ = ('1', '10', '11')
__version_info__ = ('1', '12', '1')
__version__ = '.'.join(__version_info__)

from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
BoundFunctionWrapper, WeakFunctionProxy, resolve_path, apply_patch,
wrap_object, wrap_object_attribute, function_wrapper,
wrap_function_wrapper, patch_function_wrapper,
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,
Expand All @@ -13,7 +13,4 @@
from .importer import (register_post_import_hook, when_imported,
notify_module_loaded, discover_post_import_hooks)

try:
from inspect import getcallargs
except ImportError:
from .arguments import getcallargs
from inspect import getcallargs
Loading

0 comments on commit f874a52

Please sign in to comment.