예제 #1
0
 def __init__(self, *classes):
     """
     :param *classes: The type or types of the objects we expect to
         (de)serialize.
     """
     Argument.__init__(self)
     self._expected_classes = classes
예제 #2
0
 def __init__(self, *classes):
     """
     :param *classes: The type or types of the objects we expect to
         (de)serialize.
     """
     Argument.__init__(self)
     self._expected_classes = classes
예제 #3
0
파일: _protocol.py 프로젝트: Elenw/flocker
 def __init__(self, *classes):
     """
     :param *classes: The type or types of the objects we expect to
         (de)serialize. Only immutable types should be used if encoding
         caching will be enabled.
     """
     Argument.__init__(self)
     self._expected_classes = classes
예제 #4
0
 def __init__(self, *classes):
     """
     :param *classes: The type or types of the objects we expect to
         (de)serialize. Only immutable types should be used if encoding
         caching will be enabled.
     """
     Argument.__init__(self)
     self._expected_classes = classes
예제 #5
0
 def __init__(self, optional=False, maxStringPartSize=8192):
     Argument.__init__(self, optional)
     self.maxStringPartSize = maxStringPartSize
예제 #6
0
 def __init__(self):
     _Argument.__init__(self, optional=True)
예제 #7
0
 def __init__(self, cls):
     """
     :param cls: The type of the objects we expect to (de)serialize.
     """
     Argument.__init__(self)
     self._expected_class = cls
예제 #8
0
 def __init__(self, cls):
     """
     :param cls: The type of the objects we expect to (de)serialize.
     """
     Argument.__init__(self)
     self._expected_class = cls