Commit 16fb7e25 authored by Stefan Behnel's avatar Stefan Behnel

cleanup

parent 4e46d6ae
...@@ -169,7 +169,7 @@ class MarkOverflowingArithmetic(CythonTransform): ...@@ -169,7 +169,7 @@ class MarkOverflowingArithmetic(CythonTransform):
visit_Node = visit_safe_node visit_Node = visit_safe_node
class PyObjectTypeInferer: class PyObjectTypeInferer(object):
""" """
If it's not declared, it's a PyObject. If it's not declared, it's a PyObject.
""" """
...@@ -181,7 +181,7 @@ class PyObjectTypeInferer: ...@@ -181,7 +181,7 @@ class PyObjectTypeInferer:
if entry.type is unspecified_type: if entry.type is unspecified_type:
entry.type = py_object_type entry.type = py_object_type
class SimpleAssignmentTypeInferer: class SimpleAssignmentTypeInferer(object):
""" """
Very basic type inference. Very basic type inference.
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment