You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
"""Main interface to the RPC server.
You should be able to just run the following to use this module:
python -m elpy
The first line should be "elpy-rpc ready". If it isn't, somethingbroke.
"""
import osimport sys
import elpyfrom elpy.server import ElpyRPCServer
if __name__ == '__main__': stdin = sys.stdin stdout = sys.stdout sys.stdout = sys.stderr = open(os.devnull, "w") stdout.write('elpy-rpc ready ({0})\n' .format(elpy.__version__)) stdout.flush() ElpyRPCServer(stdin, stdout).serve_forever()
|