msgpack-rpc / msgpack-rpc-python

MessagePack RPC implementation for Python
205 stars 72 forks source link

avoid importing tornado if only using the client #3

Closed Dieterbe closed 11 years ago

Dieterbe commented 11 years ago

maybe i'm missing something, but when using the client, tornado shouldn't be needed right? right now msgpackrpc/init.py imports Loop which imports the tornado loop, which is a little annoying.

repeatedly commented 11 years ago

Hmm... msgpack-rpc-python client is based on tornado. You don't want to import tornado symbols in user code space?

Dieterbe commented 11 years ago

hmm i guess i was mistaken then. i thought the client doesn't really execute in tornado because the app can run as a regular app (not in tornado), but my understanding could be all wrong.

repeatedly commented 11 years ago

Okay, closed this issue,