def __init__(self, verbosity, encoding, **unused): self.encoding = encoding PexepctMixin.__init__( self, PS1_re=r'\[cling\]\$', # [cling]$ any_PS_re=r'\[cling\][$!](?: \?)?') # [cling]!
def __init__(self, verbosity, encoding, **unused): self.encoding = encoding # --nh do not read ~/.gdbinit # --nx do not read any .gdbinit # --quiet do not print version number on startup PexepctMixin.__init__(self, PS1_re = r'\(gdb\)[ ]', any_PS_re = r'\(gdb\)[ ]')
def __init__(self, verbosity, encoding, **unused): self.encoding = encoding self._PS1 = r'/byexample/py/ps1> ' self._PS2 = r'/byexample/py/ps2> ' PexepctMixin.__init__(self, PS1_re=self._PS1, any_PS_re=r'/byexample/py/ps\d> ')
def __init__(self, verbosity, encoding, **unused): PexepctMixin.__init__(self, PS1_re = r'irb[^:]*:\d+:0(>|\*) ', any_PS_re = r'irb[^:]*:\d+:\d+(>|\*|") ') self.encoding = encoding
def __init__(self, verbosity, encoding, **unused): self.encoding = encoding PexepctMixin.__init__(self, PS1_re=r"/byexample/sh/ps1> ", any_PS_re=r"/byexample/sh/ps\d+> ")
def __init__(self, verbosity, encoding, **unused): PexepctMixin.__init__(self, PS1_re = r'node > ', any_PS_re = r'(?:node > )|(?:\.\.\. )') self.encoding = encoding