From: Tobias Grosser Date: Sat, 5 Feb 2011 17:53:53 +0000 (+0000) Subject: python bindings: Remove unneeded instruction X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f784ff0c8abe4e935fbb9c8d67230c55817ccac0;p=clang python bindings: Remove unneeded instruction git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124954 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/bindings/python/tests/cindex/test_diagnostics.py b/bindings/python/tests/cindex/test_diagnostics.py index 33876cfd20..c1ff0e38ba 100644 --- a/bindings/python/tests/cindex/test_diagnostics.py +++ b/bindings/python/tests/cindex/test_diagnostics.py @@ -3,8 +3,6 @@ from clang.cindex import * def tu_from_source(source): index = Index.create() tu = index.parse('INPUT.c', unsaved_files = [('INPUT.c', source)]) - # FIXME: Remove the need for this. - tu.index = index return tu # FIXME: We need support for invalid translation units to test better.