Dict of keyword arguments values.
"""
+ __slots__ = ('arguments', '_signature', '__weakref__')
+
def __init__(self, signature, arguments):
self.arguments = arguments
self._signature = signature
self.signature == other.signature and
self.arguments == other.arguments)
+ def __setstate__(self, state):
+ self._signature = state['_signature']
+ self.arguments = state['arguments']
+
+ def __getstate__(self):
+ return {'_signature': self._signature, 'arguments': self.arguments}
+
class Signature:
"""A Signature object represents the overall signature of a function.