[ create a new paste ] login | about

Link: http://codepad.org/RHRrcnii    [ raw code | output | fork ]

Python, pasted on Nov 1:
class css(object):

    '''

    '''
    zope.interface.implements(IServer)

<snip>






class IServer(zope.interface.Interface):

    ''' my first interface:) '''


    def startServer(port, config):
        ''' starts a server '''


    def stopServer(port
        ''' stop a server '''


    def restartServer(port
        ''' restart a server '''

<snip>



python server.py 
Traceback (most recent call last):
  File "server.py", line 5, in <module>
    from games.css import css 
  File "/home/dmkcrew/backups/code/servercontrol/games/css.py", line 15, in <module>
    from iserver import IServer
  File "/home/dmkcrew/backups/code/servercontrol/games/iserver.py", line 15
    ''' stop a server '''
                        ^
SyntaxError: invalid syntax


Output:
1
2
3
4
  Line 8
    <snip>
    ^
SyntaxError: invalid syntax


Create a new paste based on this one


Comments: