Show More
@@ -736,8 +736,11 b' def get_args():' | |||
|
736 | 736 | |
|
737 | 737 | parser = argparse.ArgumentParser( |
|
738 | 738 | description='IPython cluster startup. This starts a controller and\ |
|
739 |
engines using various approaches. |
|
|
740 | THE API WILL CHANGE SIGNIFICANTLY BEFORE THE FINAL RELEASE.' | |
|
739 | engines using various approaches. Use the IPYTHONDIR environment\ | |
|
740 | variable to change your IPython directory from the default of\ | |
|
741 | .ipython or _ipython. The log and security subdirectories of your\ | |
|
742 | IPython directory will be used by this script for log files and\ | |
|
743 | security files.' | |
|
741 | 744 | ) |
|
742 | 745 | subparsers = parser.add_subparsers( |
|
743 | 746 | help='available cluster types. For help, do "ipcluster TYPE --help"') |
@@ -264,7 +264,14 b' def init_config():' | |||
|
264 | 264 | Initialize the configuration using default and command line options. |
|
265 | 265 | """ |
|
266 | 266 | |
|
267 |
parser = OptionParser( |
|
|
267 | parser = OptionParser("""ipcontroller [options] | |
|
268 | ||
|
269 | Start an IPython controller. | |
|
270 | ||
|
271 | Use the IPYTHONDIR environment variable to change your IPython directory | |
|
272 | from the default of .ipython or _ipython. The log and security | |
|
273 | subdirectories of your IPython directory will be used by this script | |
|
274 | for log files and security files.""") | |
|
268 | 275 | |
|
269 | 276 | # Client related options |
|
270 | 277 | parser.add_option( |
@@ -140,7 +140,14 b' def init_config():' | |||
|
140 | 140 | Initialize the configuration using default and command line options. |
|
141 | 141 | """ |
|
142 | 142 | |
|
143 |
parser = OptionParser( |
|
|
143 | parser = OptionParser("""ipengine [options] | |
|
144 | ||
|
145 | Start an IPython engine. | |
|
146 | ||
|
147 | Use the IPYTHONDIR environment variable to change your IPython directory | |
|
148 | from the default of .ipython or _ipython. The log and security | |
|
149 | subdirectories of your IPython directory will be used by this script | |
|
150 | for log files and security files.""") | |
|
144 | 151 | |
|
145 | 152 | parser.add_option( |
|
146 | 153 | "--furl-file", |
General Comments 0
You need to be logged in to leave comments.
Login now