Searched defs:MultiCall (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython2/Lib/idlelib/
H A DMultiCall.py2 MultiCall - a class which inherits its methods from a Tkinter widget (Text, for
6 MultiCall recognizes only a subset of legal event sequences. Sequences which
16 For all events which were handled by MultiCall, a new member is added to the
19 For Key/Button events (which are handled by MultiCall and may receive
304 """Return a MultiCall class which inherits its methods from the
311 class MultiCall (widget): class in function:MultiCallCreator
397 _multicall_dict[widget] = MultiCall
398 return MultiCall
403 root.title("Test MultiCall")
/external/python/cpython3/Lib/idlelib/
H A Dmulticall.py2 MultiCall - a class which inherits its methods from a Tkinter widget (Text, for
6 MultiCall recognizes only a subset of legal event sequences. Sequences which
16 For all events which were handled by MultiCall, a new member is added to the
19 For Key/Button events (which are handled by MultiCall and may receive
315 """Return a MultiCall class which inherits its methods from the
322 class MultiCall (widget): class in function:MultiCallCreator
413 _multicall_dict[widget] = MultiCall
414 return MultiCall
419 top.title("Test MultiCall")
/external/python/cpython2/Lib/
H A Dxmlrpclib.py111 MultiCall Executor of boxcared xmlrpc requests
945 # some lesser magic to store calls made to a MultiCall object
972 class MultiCall: class in inherits:
977 Methods can be added to the MultiCall using normal
980 multicall = MultiCall(server_proxy)
984 To execute the multicall, call the MultiCall object e.g.:
994 return "<MultiCall at %x>" % id(self)
1648 multi = MultiCall(server)
/external/python/cpython3/Lib/xmlrpc/
H A Dclient.py106 MultiCall Executor of boxcared xmlrpc requests
822 # some lesser magic to store calls made to a MultiCall object
848 class MultiCall: class in inherits:
853 Methods can be added to the MultiCall using normal
856 multicall = MultiCall(server_proxy)
860 To execute the multicall, call the MultiCall object e.g.:
1510 multi = MultiCall(server)

Completed in 124 milliseconds