예제 #1
0
파일: ping.py 프로젝트: Bittarman/DASBiT
    def __init__(self, prefix, command, args):
        Generic.__init__(self, prefix, command, args)

        self.server = args[0]
        
예제 #2
0
파일: notice.py 프로젝트: Bittarman/DASBiT
    def __init__(self, prefix, command, args):
        Generic.__init__(self, prefix, command, args)

        self.target  = args[0]
        self.message = args[1]
예제 #3
0
파일: numeric.py 프로젝트: Bittarman/DASBiT
 def __init__(self, prefix, command, args):
     Generic.__init__(self, prefix, int(command), args)
예제 #4
0
    def __init__(self, prefix, command, args):
        Generic.__init__(self, prefix, command, args)

        self.server = args[0]
예제 #5
0
    def __init__(self, prefix, command, args):
        Generic.__init__(self, prefix, command, args)

        self.target = args[0]
        self.message = args[1]
예제 #6
0
 def __init__(self, prefix, command, args):
     Generic.__init__(self, prefix, int(command), args)