pylib/pycodestyle/testsuite/E12.py [338:349]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if True:
    def example_issue254():
        return [node.copy(
            (
                replacement
                # First, look at all the node's current children.
                for child in node.children
                # Replace them.
                for replacement in replace(child)
                ),
            dict(name=token.undefined)
        )]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pylib/pycodestyle/testsuite/E12not.py [593:605]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if True:

    def example_issue254():
        return [node.copy(
            (
                replacement
                # First, look at all the node's current children.
                for child in node.children
                # Replace them.
                for replacement in replace(child)
            ),
            dict(name=token.undefined)
        )]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



