Dirk Makowski
Dirk Makowski
I'm have a simple WebsocketWSGI server: ``` python @guv.websocket.WebSocketWSGI def my_handler(ws): print('INSIDE HANDLER') while True: from_browser = ws.wait() print('>', from_browser) ws.send("from server:" + from_browser) # Served by gunicorn with guv.GuvWorker...
I use the simple WebSocket Server as described in #27. When I stress test it with [Thor](https://github.com/observing/thor), the workers quit with OSError Bad file descriptor: ``` [2015-07-11 16:25:43 +0200] [3256]...
I have a schema with a nested MappingSchema: ``` python class ConfSchema(colander.MappingSchema): foo = colander.SchemaNode(colander.Integer()) @colander.instantiate(missing={}) class scales(colander.MappingSchema): bar = MiniMax() baz = MiniMax() ``` When I flatten an appstruct...
``` ``` # Callback onSplitterStop Set this attribute on the splitter block to a function name (not a function call ;) and get notified when the splitter stopped moving. ```...
I had installed yolk in a Python 3.2 virtualenv. Querying cheeseshop for a name, e.g. yolk -S name=couch results in this error: File "/home/dm/myprojects/python3-env/lib/python3.2/site-packages/yolk/pypi.py", line 179, in query_cached_package_list return pickle.load(open(self.pkg_cache_file,...