We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a3b4e5 commit fdee800Copy full SHA for fdee800
2 files changed
api_core/google/api_core/gapic_v1/dispatch.py
@@ -16,6 +16,11 @@
16
17
18
def dispatch(func):
19
+ """Return a decorated method that dispatches on the second argument.
20
+
21
+ This is the equivalent of :meth:`functools.singledispatch`, but for
22
+ bound methods.
23
+ """
24
base_dispatcher = functools.singledispatch(func)
25
26
# Define a wrapper function that works off args[1] instead of args[0].
api_core/setup.py
@@ -22,7 +22,7 @@
name = 'google-api-core'
description = 'Google API client core library'
-version = '1.6.0a1'
+version = '1.5.0'
# Should be one of:
27
# 'Development Status :: 3 - Alpha'
28
# 'Development Status :: 4 - Beta'
0 commit comments