bowler/type_inference.py [138:144]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return max(
            max(OP_MIN_TYPE[c.type] for c in node.children[1::2]),
            max(
                numeric_expr_type(c, use_py2_division, type_for_unknown)
                for c in node.children[::2]
            ),
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bowler/type_inference.py [151:157]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return max(
            max(OP_MIN_TYPE[c.type] for c in node.children[1::2]),
            max(
                numeric_expr_type(c, use_py2_division, type_for_unknown)
                for c in node.children[::2]
            ),
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



