def Event(*args, **kwargs):
return _Event(*args, **kwargs)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
src/p/y/pyjamas-desktop-HEAD/pyjamas-web/examples/jsonrpc/public/services/jsonrpc/__init__.py pyjamas-desktop(Download)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
src/p/y/pyjamas-desktop-HEAD/pyjamas-khtml/examples/jsonrpc/public/services/jsonrpc/__init__.py pyjamas-desktop(Download)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
src/d/i/diksel-HEAD/trunk/thirdparty/pyjamasdev/examples/jsonrpc/public/services/jsonrpc/__init__.py diksel(Download)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
src/d/i/diksel-HEAD/trunk/thirdparty/pyjamasdev/examples/infohierarchy/public/services/jsonrpc/__init__.py diksel(Download)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
src/d/i/diksel-HEAD/thirdparty/pyjamasdev/examples/jsonrpc/public/services/jsonrpc/__init__.py diksel(Download)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
src/d/i/diksel-HEAD/thirdparty/pyjamasdev/examples/infohierarchy/public/services/jsonrpc/__init__.py diksel(Download)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
src/p/y/pyjamas-HEAD/src/examples/jsonrpc/public/services/jsonrpc/__init__.py pyjamas(Download)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
src/p/y/pyjamas-0.7/examples/jsonrpc/public/services/jsonrpc/__init__.py Pyjamas(Download)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
src/p/y/pyjamas-0.7/examples/infohierarchy/public/services/jsonrpc/__init__.py Pyjamas(Download)
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ from threading import Event, Lock from errors import *
def __init__(self):
self.__evt = Event()
def waiting(self):
return not self.__evt.isSet()
def waitForResponse(self, timeOut=None):
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next