Home
last modified time | relevance | path

Searched refs:MultiCall (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DMultiCall.py311 class MultiCall (widget): class
397 _multicall_dict[widget] = MultiCall
398 return MultiCall
DAutoCompleteWindow.py5 from idlelib.MultiCall import MC_SHIFT
DREADME.txt50 MultiCall.py # Wrap tk widget to allow multiple calls per event (nim).
DNEWS.txt615 - Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
705 MultiCall module allows binding multiple actions to an event.
DEditorWindow.py11 from idlelib.MultiCall import MultiCallCreator
/external/python/cpython3/Lib/idlelib/
Dmulticall.py322 class MultiCall (widget): class
413 _multicall_dict[widget] = MultiCall
414 return MultiCall
DNEWS2x.txt112 - Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
202 MultiCall module allows binding multiple actions to an event.
/external/python/cpython2/Doc/library/
Dxmlrpclib.rst467 MultiCall Objects
472 The :class:`MultiCall` object provides a way to encapsulate multiple calls to a
476 .. class:: MultiCall(server)
481 :class:`MultiCall` object. Calling the object itself causes all stored calls to
517 multicall = xmlrpclib.MultiCall(proxy)
Dsimplexmlrpcserver.rst218 multi = MultiCall(server)
/external/python/cpython3/Doc/library/
Dxmlrpc.client.rst461 MultiCall Objects
464 The :class:`MultiCall` object provides a way to encapsulate multiple calls to a
468 .. class:: MultiCall(server)
473 :class:`MultiCall` object. Calling the object itself causes all stored calls to
509 multicall = xmlrpc.client.MultiCall(proxy)
Dxmlrpc.server.rst237 multi = MultiCall(server)
/external/python/cpython3/Lib/xmlrpc/
Dclient.py848 class MultiCall: class
1510 multi = MultiCall(server)
/external/python/cpython2/Lib/
Dxmlrpclib.py972 class MultiCall: class
1648 multi = MultiCall(server)
/external/python/cpython2/Lib/test/
Dtest_xmlrpc.py614 multicall = xmlrpclib.MultiCall(p)
631 multicall = xmlrpclib.MultiCall(p)
/external/python/cpython3/Lib/test/
Dtest_xmlrpc.py801 multicall = xmlrpclib.MultiCall(p)
818 multicall = xmlrpclib.MultiCall(p)
/external/python/cpython2/Misc/
DHISTORY3475 - xmlrpclib.MultiCall has been added.
/external/python/cpython3/Misc/
DHISTORY20859 - xmlrpclib.MultiCall has been added.