diff options
author | Robert Bradshaw <robertwb@gmail.com> | 2013-05-07 11:15:37 -0700 |
---|---|---|
committer | Robert Bradshaw <robertwb@gmail.com> | 2013-05-07 11:15:37 -0700 |
commit | 4957f69f3e55d7979b80e9cb7ded356aa84a5047 (patch) | |
tree | c8222ac55550aa7ee56589657ffd1e0cde485489 /Cython/Compiler/ModuleNode.py | |
parent | 12d7dbb301851508af7950fbb4307a1d5b2af615 (diff) | |
download | cython-4957f69f3e55d7979b80e9cb7ded356aa84a5047.tar.gz |
Revert "Undo sorting types by inheritance until we figure out what's up with Sage."
This reverts commit 12d7dbb301851508af7950fbb4307a1d5b2af615.
Diffstat (limited to 'Cython/Compiler/ModuleNode.py')
-rw-r--r-- | Cython/Compiler/ModuleNode.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index 3a969cd05..767699318 100644 --- a/Cython/Compiler/ModuleNode.py +++ b/Cython/Compiler/ModuleNode.py @@ -458,8 +458,6 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): return (vtab_list, vtabslot_list) def sort_cdef_classes(self, env): - # TODO(robertwb): This causes an infinite loop in Sage. - return key_func = operator.attrgetter('objstruct_cname') entry_dict = {} for entry in env.c_class_entries: |