How to use the replication.share.yidl.src.yidl.target.Declaration.__repr__ function in replication

To help you get started, we’ve selected a few replication examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github xtreemfs / babudb / replication / share / yidl / src / yidl / target.py View on Github external
def __repr__( self ):
        inout = []
        if self.isInbound(): inout.append( "in" )
        if self.isOutbound: inout.append( "out" )
        return "".join( inout ) + " " + Declaration.__repr__( self )
github xtreemfs / babudb / replication / share / yidl / src / yidl / target.py View on Github external
def __repr__( self ):
        return "const " + Declaration.__repr__( self )