Searched refs:RemoteMethodSchema (Results 1 – 8 of 8) sorted by relevance
/dports/devel/py-foolscap/foolscap-21.7.0/src/foolscap/test/ |
H A D | common.py | 14 from foolscap.remoteinterface import getRemoteInterface, RemoteMethodSchema, \ 248 add1 = RemoteMethodSchema(_response=int, a=int, b=int) 257 disputed = RemoteMethodSchema(_response=int, a=int) 263 sub = RemoteMethodSchema(_response=int, a=int, b=int) 274 RIMyTarget3['disputed'] = RemoteMethodSchema(_response=int, a=str) 278 RIMyTarget3['disputed2'] = RemoteMethodSchema(_response=str, a=int) 282 RIMyTarget3['sub'] = RemoteMethodSchema(_response=int, a=int, b=int)
|
H A D | test_crypto.py | 9 from foolscap.remoteinterface import RemoteMethodSchema 14 add1 = RemoteMethodSchema(_response=int, a=int, b=int)
|
H A D | test_interfaces.py | 9 from foolscap.remoteinterface import getRemoteInterface, RemoteMethodSchema 73 self.assertTrue(isinstance(s1, RemoteMethodSchema)) 85 self.assertTrue(isinstance(s1, RemoteMethodSchema))
|
H A D | test_schema.py | 7 from foolscap.remoteinterface import RemoteMethodSchema, \ 319 r = RemoteMethodSchema(method=foo) 368 RemoteMethodSchema, method=foo) 371 RemoteMethodSchema, method=bar)
|
/dports/devel/py-foolscap/foolscap-21.7.0/src/foolscap/ |
H A D | remoteinterface.py | 84 m = RemoteMethodSchema(method=m) 129 class RemoteMethodSchema(object): class
|
/dports/devel/py-foolscap/foolscap-21.7.0/doc/ |
H A D | schema.rst | 63 | ``RemoteMethodSchema(method=None, _response=None, __options=[], **kwargs)`` | \ | Cons…
|
H A D | using-foolscap.rst | 783 ``foolscap.schema.RemoteMethodSchema`` [#]_ . This approach is more flexible: 826 subtract = schema.RemoteMethodSchema(a=int, b=int, _response=int)
|
/dports/devel/py-foolscap/foolscap-21.7.0/ |
H A D | ChangeLog.0.6.4 | 2890 * foolscap/remoteinterface.py (RemoteMethodSchema.initFromMethod): 3624 into RemoteMethodSchema.initFromMethod 3640 * foolscap/schema.py (RemoteMethodSchema.checkResults): don't 3687 * foolscap/schema.py (RemoteMethodSchema): allow posargs, deal 3690 RemoteMethodSchema class 3695 things to match RemoteMethodSchema's new interfaces 3749 * foolscap/schema.py (RemoteMethodSchema.checkResults): same 3750 (RemoteMethodSchema.checkAllArgs): same 3763 (RemoteMethodSchema.checkAllArgs): record which argument caused the 4236 * foolscap/schema.py (RemoteMethodSchema.initFromMethod): same
|