This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from optparse import make_option, OptionParser | |
MONKEY_PATCH_NAMES = ('os', 'socket', 'thread', 'select', 'time', 'ssl', 'all') | |
class CommandError(Exception): | |
pass | |
class FastcgiCommand(object): | |
args = '<host>:<port> | <socket file>' | |
help = 'Start fastcgi server' |