Commit 95e5c7ec authored by Denis Bilenko's avatar Denis Bilenko

minor doc improvement

parent 405d689c
...@@ -66,10 +66,10 @@ if __name__=='__main__': ...@@ -66,10 +66,10 @@ if __name__=='__main__':
USAGE: python -m gevent.monkey [MONKEY OPTIONS] script [SCRIPT OPTIONS] USAGE: python -m gevent.monkey [MONKEY OPTIONS] script [SCRIPT OPTIONS]
If no OPTIONS present, monkey patches the all modules it can patch. If no OPTIONS present, monkey patches all the modules it can patch.
You can exclude a module with --no-module, e.g. --no-thread. You can You can exclude a module with --no-module, e.g. --no-thread. You can
specify a module to patch with --module, e.g. --socket. In this case specify a module to patch with --module, e.g. --socket. In the latter
only those mentioned on the command line will be patched. case only the modules specified on the command line will be patched.
MONKEY OPTIONS: --verbose %s""" % ', '.join('--[no-]%s' % m for m in modules) MONKEY OPTIONS: --verbose %s""" % ', '.join('--[no-]%s' % m for m in modules)
args = {} args = {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment