Skip to content

Commit f874a52

Browse files
Upgrade wrapt.
1 parent be13182 commit f874a52

File tree

8 files changed

+662
-349
lines changed

8 files changed

+662
-349
lines changed

THIRD_PARTY_NOTICES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Distributed under the following license(s):
4646

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

49-
Copyright (c) 2013-2017, Graham Dumpleton
49+
Copyright (c) 2013-2019, Graham Dumpleton
5050
All rights reserved.
5151

5252
Distributed under the following license(s):

newrelic/packages/wrapt/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013-2017, Graham Dumpleton
1+
Copyright (c) 2013-2019, Graham Dumpleton
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

newrelic/packages/wrapt/__init__.py

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
__version_info__ = ('1', '10', '11')
1+
__version_info__ = ('1', '12', '1')
22
__version__ = '.'.join(__version_info__)
33

44
from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
5-
BoundFunctionWrapper, WeakFunctionProxy, resolve_path, apply_patch,
6-
wrap_object, wrap_object_attribute, function_wrapper,
7-
wrap_function_wrapper, patch_function_wrapper,
5+
BoundFunctionWrapper, WeakFunctionProxy, PartialCallableObjectProxy,
6+
resolve_path, apply_patch, wrap_object, wrap_object_attribute,
7+
function_wrapper, wrap_function_wrapper, patch_function_wrapper,
88
transient_function_wrapper)
99

1010
from .decorators import (adapter_factory, AdapterFactory, decorator,
@@ -13,7 +13,4 @@
1313
from .importer import (register_post_import_hook, when_imported,
1414
notify_module_loaded, discover_post_import_hooks)
1515

16-
try:
17-
from inspect import getcallargs
18-
except ImportError:
19-
from .arguments import getcallargs
16+
from inspect import getcallargs

0 commit comments

Comments
 (0)