##// END OF EJS Templates
The ipcluster command is now able to reuse FURL files....
The ipcluster command is now able to reuse FURL files. This is done by passing the -r, --client-port and --engine-port options onto ipcontroller. Docs are also updated to indicated this new feature.

File last commit:

r1717:90b3f087
r1883:3bdd6d9e
Show More
compile.py
20 lines | 417 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Call the compile script to check that all code we ship compiles correctly.
"""
import os
import sys
vstr = '.'.join(map(str,sys.version_info[:2]))
stat = os.system('python %s/lib/python%s/compileall.py .' % (sys.prefix,vstr))
print
if stat:
print '*** THERE WAS AN ERROR! ***'
print 'See messages above for the actual file that produced it.'
else:
print 'OK'
sys.exit(stat)