mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-19 08:59:27 +01:00
Added vim:set ... : strings to source in order to keep file formatting
consistent between developers. Jeremy should be adding the equivalent settings for emacs soon.
This commit is contained in:
parent
bbe6cbc05d
commit
c803e5e9d8
@ -3970,3 +3970,4 @@ class SOAPServer(SocketServer.TCPServer):
|
|||||||
def registerKWFunction(self, function, namespace = '', funcName = None):
|
def registerKWFunction(self, function, namespace = '', funcName = None):
|
||||||
self.registerFunction(MethodSig(function,keywords=1), namespace,
|
self.registerFunction(MethodSig(function,keywords=1), namespace,
|
||||||
funcName)
|
funcName)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -272,3 +272,4 @@ def searchByListMania(listManiaID, type="heavy", page=1, license_key=None, http_
|
|||||||
|
|
||||||
def searchSimilar(ASIN, type="heavy", page=1, license_key=None, http_proxy=None):
|
def searchSimilar(ASIN, type="heavy", page=1, license_key=None, http_proxy=None):
|
||||||
return search("SimilaritySearch", ASIN, None, type, page, license_key, http_proxy)
|
return search("SimilaritySearch", ASIN, None, type, page, license_key, http_proxy)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -291,3 +291,4 @@ def find_prefix_at_end (haystack, needle):
|
|||||||
result = nl-i
|
result = nl-i
|
||||||
break
|
break
|
||||||
return result
|
return result
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -549,3 +549,4 @@ if os.name == 'posix':
|
|||||||
self._fileno = fd
|
self._fileno = fd
|
||||||
self.socket = file_wrapper (fd)
|
self.socket = file_wrapper (fd)
|
||||||
self.add_channel()
|
self.add_channel()
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -280,3 +280,4 @@ def enable(display=1, logdir=None, context=5, format="html"):
|
|||||||
tracebacks to be written to files there."""
|
tracebacks to be written to files there."""
|
||||||
sys.excepthook = Hook(display=display, logdir=logdir,
|
sys.excepthook = Hook(display=display, logdir=logdir,
|
||||||
context=context, format=format)
|
context=context, format=format)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -430,3 +430,4 @@ def main(argv):
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main(sys.argv[1:])
|
main(sys.argv[1:])
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -210,3 +210,4 @@ if __name__ == '__main__':
|
|||||||
print "Token: " + repr(tt)
|
print "Token: " + repr(tt)
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -720,3 +720,4 @@ main = TestProgram
|
|||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main(module=None)
|
main(module=None)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -1112,3 +1112,4 @@ if __name__ == "__main__":
|
|||||||
print "read %d bytes" % len(buf)
|
print "read %d bytes" % len(buf)
|
||||||
print
|
print
|
||||||
time.sleep(0.1)
|
time.sleep(0.1)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -106,3 +106,4 @@ class BadWords(callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = BadWords
|
Class = BadWords
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -151,3 +151,4 @@ class ChannelLogger(irclib.IrcCallback):
|
|||||||
|
|
||||||
|
|
||||||
Class = ChannelLogger
|
Class = ChannelLogger
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -77,4 +77,4 @@ class ChannelStats(callbacks.Privmsg, DBHandler):
|
|||||||
|
|
||||||
|
|
||||||
Class = ChannelStats
|
Class = ChannelStats
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -72,3 +72,4 @@ class Ctcp(callbacks.PrivmsgRegexp):
|
|||||||
irc.queueMsg(notice(msg.nick, s))
|
irc.queueMsg(notice(msg.nick, s))
|
||||||
|
|
||||||
Class = Ctcp
|
Class = Ctcp
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -210,3 +210,4 @@ class Factoids(DBHandler, callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = Factoids
|
Class = Factoids
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -53,3 +53,4 @@ class FixRelayBot(irclib.IrcCallback):
|
|||||||
|
|
||||||
|
|
||||||
Class = FixRelayBot
|
Class = FixRelayBot
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -93,3 +93,4 @@ class Forums(callbacks.PrivmsgRegexp):
|
|||||||
|
|
||||||
|
|
||||||
Class = Forums
|
Class = Forums
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -217,3 +217,4 @@ Class = FreeBSD
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
makeDb(dbFile, getIndex(), replace=True)
|
makeDb(dbFile, getIndex(), replace=True)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -367,3 +367,4 @@ class FunCommands(callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = FunCommands
|
Class = FunCommands
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -297,4 +297,4 @@ if __name__ == '__main__':
|
|||||||
db.commit()
|
db.commit()
|
||||||
db.close()
|
db.close()
|
||||||
|
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -210,3 +210,4 @@ class Http(callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = Http
|
Class = Http
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -208,3 +208,4 @@ class Moobot(callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = Moobot
|
Class = Moobot
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -78,3 +78,4 @@ class NickServ(callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = NickServ
|
Class = NickServ
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -70,3 +70,4 @@ class Parter(callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = Parter
|
Class = Parter
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -167,3 +167,4 @@ class Quotes(DBHandler, callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = Quotes
|
Class = Quotes
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -53,3 +53,4 @@ class RawLogger(irclib.IrcCallback):
|
|||||||
|
|
||||||
|
|
||||||
Class = RawLogger
|
Class = RawLogger
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -39,3 +39,4 @@ class Relay(callbacks.Privmsg):
|
|||||||
def relayconnect(self, irc, msg, args):
|
def relayconnect(self, irc, msg, args):
|
||||||
"<domain:port> (port defaults to 6667)"
|
"<domain:port> (port defaults to 6667)"
|
||||||
pass
|
pass
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -50,3 +50,4 @@ class RootWarner(irclib.IrcCallback):
|
|||||||
|
|
||||||
|
|
||||||
Class = RootWarner
|
Class = RootWarner
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -60,3 +60,4 @@ class ThreadedFunCommands(callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = ThreadedFunCommands
|
Class = ThreadedFunCommands
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -100,3 +100,4 @@ class Topic(callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = Topic
|
Class = Topic
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -87,3 +87,4 @@ class Unix(callbacks.Privmsg):
|
|||||||
|
|
||||||
|
|
||||||
Class = Unix
|
Class = Unix
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -46,3 +46,4 @@ class Utils(callbacks.Privmsg):
|
|||||||
irc.reply(msg, first+second)
|
irc.reply(msg, first+second)
|
||||||
|
|
||||||
Class = Utils
|
Class = Utils
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -43,3 +43,4 @@ class DBHandler(object):
|
|||||||
def die(self):
|
def die(self):
|
||||||
for db in self.dbCache.itervalues():
|
for db in self.dbCache.itervalues():
|
||||||
db.close()
|
db.close()
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -31,4 +31,4 @@
|
|||||||
|
|
||||||
from baseplugin import *
|
from baseplugin import *
|
||||||
|
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -115,3 +115,4 @@ Class = Debian
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
makeDb(dbFile, getIndex(), replace=True)
|
makeDb(dbFile, getIndex(), replace=True)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -124,3 +124,4 @@ if __name__ == '__main__':
|
|||||||
for line in sys.stdin:
|
for line in sys.stdin:
|
||||||
db.add(line.translate(trans, '\n'))
|
db.add(line.translate(trans, '\n'))
|
||||||
db.flush()
|
db.flush()
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -16,3 +16,4 @@ if __name__ == '__main__':
|
|||||||
total += len(msg.prefix)
|
total += len(msg.prefix)
|
||||||
lines += 1
|
lines += 1
|
||||||
print total / lines
|
print total / lines
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -58,3 +58,4 @@ if __name__ == '__main__':
|
|||||||
start = time.time()
|
start = time.time()
|
||||||
makeContentsDb(sys.argv[1])
|
makeContentsDb(sys.argv[1])
|
||||||
print 'Took %s seconds.' % time.time() - start
|
print 'Took %s seconds.' % time.time() - start
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -45,3 +45,4 @@ class Friendly(callbacks.PrivmsgRegexp):
|
|||||||
"(?:good)?bye|adios|vale|ciao|au revoir|seeya|night"
|
"(?:good)?bye|adios|vale|ciao|au revoir|seeya|night"
|
||||||
if re.search(irc.nick, msg.args[1]):
|
if re.search(irc.nick, msg.args[1]):
|
||||||
self.reply('vale, amic(e|a)!')
|
self.reply('vale, amic(e|a)!')
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -58,3 +58,4 @@ for line in sys.stdin:
|
|||||||
print """INSERT INTO words VALUES (NULL, '%s', (SELECT id FROM sorted_words WHERE word='%s'));""" % (word, sorted)
|
print """INSERT INTO words VALUES (NULL, '%s', (SELECT id FROM sorted_words WHERE word='%s'));""" % (word, sorted)
|
||||||
|
|
||||||
print """END TRANSACTION;"""
|
print """END TRANSACTION;"""
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -46,4 +46,4 @@ def Rbot(callbacks.Privmsg):
|
|||||||
if target in ('me', 'yourself', 'himself', irc.nick):
|
if target in ('me', 'yourself', 'himself', irc.nick):
|
||||||
target = msg.nick
|
target = msg.nick
|
||||||
#'%s %s %s'
|
#'%s %s %s'
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -15,4 +15,4 @@ class TwistedDriver(drivers.IrcDriver, twisted.protocols.basic.LineReceiver):
|
|||||||
self.irc = irc
|
self.irc = irc
|
||||||
irc.driver = irc
|
irc.driver = irc
|
||||||
self.delimiter = '\n'
|
self.delimiter = '\n'
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -32,3 +32,4 @@ class UsersHandler(xml.sax.handler.ContentHandler):
|
|||||||
self.name = ''
|
self.name = ''
|
||||||
self.u = None
|
self.u = None
|
||||||
self.chars = ''
|
self.chars = ''
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -15,3 +15,4 @@ if __name__ == '__main__':
|
|||||||
for name in os.listdir('conf'):
|
for name in os.listdir('conf'):
|
||||||
os.remove(os.path.join('conf', name))
|
os.remove(os.path.join('conf', name))
|
||||||
os.path.walk(os.curdir, removeFiles, None)
|
os.path.walk(os.curdir, removeFiles, None)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -15,4 +15,4 @@ if __name__ == '__main__':
|
|||||||
key = db.nextkey(key)
|
key = db.nextkey(key)
|
||||||
db.close()
|
db.close()
|
||||||
fd.close()
|
fd.close()
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -21,3 +21,4 @@ if __name__ == '__main__':
|
|||||||
print 'Invalid line: %s' % line.strip()
|
print 'Invalid line: %s' % line.strip()
|
||||||
db.close()
|
db.close()
|
||||||
fd.close()
|
fd.close()
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -9,3 +9,4 @@ if len(sys.argv) < 2:
|
|||||||
sys.exit(-1)
|
sys.exit(-1)
|
||||||
|
|
||||||
shutil.copy('plugins/template.py', 'plugins/%s.py' % sys.argv[1])
|
shutil.copy('plugins/template.py', 'plugins/%s.py' % sys.argv[1])
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -32,4 +32,4 @@ if __name__ == '__main__':
|
|||||||
x.x = 0
|
x.x = 0
|
||||||
os.path.walk(dir, visit, x)
|
os.path.walk(dir, visit, x)
|
||||||
print '%s bytes removed.' % x.x
|
print '%s bytes removed.' % x.x
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -110,3 +110,4 @@ WHITEBG = '\033[47m'
|
|||||||
#def clrtoeol():
|
#def clrtoeol():
|
||||||
# 'Clears screen to end of line'
|
# 'Clears screen to end of line'
|
||||||
# print '\033[K'
|
# print '\033[K'
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -235,3 +235,4 @@ if conf.telnetEnable and __name__ != '__main__':
|
|||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
ReplListener()
|
ReplListener()
|
||||||
asyncore.loop()
|
asyncore.loop()
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -149,3 +149,4 @@ def main():
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -394,3 +394,4 @@ class PrivmsgRegexp(Privmsg):
|
|||||||
if msg:
|
if msg:
|
||||||
irc = IrcObjectProxyRegexp(irc)
|
irc = IrcObjectProxyRegexp(irc)
|
||||||
self.callCommand(method, (irc, msg, m))
|
self.callCommand(method, (irc, msg, m))
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -447,4 +447,4 @@ if __name__ == '__main__':
|
|||||||
make(sys.argv[1])
|
make(sys.argv[1])
|
||||||
else:
|
else:
|
||||||
make(sys.argv[1], sys.argv[2])
|
make(sys.argv[1], sys.argv[2])
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -171,3 +171,4 @@ prefixChars = '@'
|
|||||||
###############################
|
###############################
|
||||||
###############################
|
###############################
|
||||||
###############################
|
###############################
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -185,3 +185,4 @@ def tracer(frame, event, _):
|
|||||||
s = '%s: %s\n' % (frame.f_code.co_filename, frame.f_code.co_name)
|
s = '%s: %s\n' % (frame.f_code.co_filename, frame.f_code.co_name)
|
||||||
_tracefd.write(s)
|
_tracefd.write(s)
|
||||||
_tracefd.flush()
|
_tracefd.flush()
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -139,3 +139,4 @@ def run():
|
|||||||
_drivers[name].die()
|
_drivers[name].die()
|
||||||
del _drivers[name]
|
del _drivers[name]
|
||||||
_drivers[name] = driver
|
_drivers[name] = driver
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -201,4 +201,4 @@ def enumerate(L):
|
|||||||
def window(L, size):
|
def window(L, size):
|
||||||
for i in xrange(len(L) - (size-1)):
|
for i in xrange(len(L) - (size-1)):
|
||||||
yield L[i:i+size]
|
yield L[i:i+size]
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -482,3 +482,4 @@ def checkCapabilities(hostmask, capabilities, requireAll=False):
|
|||||||
#################################################
|
#################################################
|
||||||
#################################################
|
#################################################
|
||||||
startup = False
|
startup = False
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -387,3 +387,4 @@ class Irc(object):
|
|||||||
for callback in self.callbacks:
|
for callback in self.callbacks:
|
||||||
callback.die()
|
callback.die()
|
||||||
world.ircs.remove(self)
|
world.ircs.remove(self)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -326,3 +326,4 @@ def whois(nick):
|
|||||||
|
|
||||||
def invite(channel, user):
|
def invite(channel, user):
|
||||||
return IrcMsg(command='INVITE', args=(channel, user))
|
return IrcMsg(command='INVITE', args=(channel, user))
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -189,4 +189,4 @@ class nick(str):
|
|||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
import sys, doctest
|
import sys, doctest
|
||||||
doctest.testmod(sys.modules['__main__'])
|
doctest.testmod(sys.modules['__main__'])
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -1182,3 +1182,4 @@ standardPrivmsgModules = (OwnerCommands,
|
|||||||
ChannelCommands,
|
ChannelCommands,
|
||||||
UserCommands,
|
UserCommands,
|
||||||
MiscCommands)
|
MiscCommands)
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -129,3 +129,4 @@ if __name__ == '__main__':
|
|||||||
prompt = '>>> '
|
prompt = '>>> '
|
||||||
else:
|
else:
|
||||||
prompt = '... '
|
prompt = '... '
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -85,4 +85,4 @@ removeEvent = schedule.removeEvent
|
|||||||
addPeriodicEvent = schedule.addPeriodicEvent
|
addPeriodicEvent = schedule.addPeriodicEvent
|
||||||
removePeriodicEvent = removeEvent
|
removePeriodicEvent = removeEvent
|
||||||
run = schedule.run
|
run = schedule.run
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -194,3 +194,4 @@ def superReload(module):
|
|||||||
('func_code', 'func_defaults', 'func_doc'))
|
('func_code', 'func_defaults', 'func_doc'))
|
||||||
return module
|
return module
|
||||||
'''
|
'''
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -28,4 +28,4 @@ if __name__ == '__main__':
|
|||||||
print 'Invalid Syntax, line %s' % lineno
|
print 'Invalid Syntax, line %s' % lineno
|
||||||
maker.finish()
|
maker.finish()
|
||||||
|
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
@ -58,4 +58,4 @@ if __name__ == '__main__':
|
|||||||
if os.fork() != 0:
|
if os.fork() != 0:
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
asyncore.loop()
|
asyncore.loop()
|
||||||
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
Loading…
Reference in New Issue
Block a user