diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2010-01-24 21:19:40 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2010-01-24 21:19:40 +0000 |
| commit | 18b75a4f108d23807169be0bf5322608e6ab852e (patch) | |
| tree | 4d0c0bc910dd8164ddd72da6b90e12359ec0835b /clang/bindings/python | |
| parent | ecb457c4e2d1cbc5daeea6baff4e0ba56e16b712 (diff) | |
| download | bcm5719-llvm-18b75a4f108d23807169be0bf5322608e6ab852e.tar.gz bcm5719-llvm-18b75a4f108d23807169be0bf5322608e6ab852e.zip | |
cindex/Python: Remove Cursor.file forwarding method, this doesn't really fit the API.
llvm-svn: 94382
Diffstat (limited to 'clang/bindings/python')
| -rw-r--r-- | clang/bindings/python/clang/cindex.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/clang/bindings/python/clang/cindex.py b/clang/bindings/python/clang/cindex.py index 394214c3a98..d802994d9e8 100644 --- a/clang/bindings/python/clang/cindex.py +++ b/clang/bindings/python/clang/cindex.py @@ -213,14 +213,6 @@ class Cursor(Structure): """ return Cursor_extent(self) - @property - def file(self): - """ - Return the file containing the pointed-at entity. This is an alias for - location.file. - """ - return self.location.file - def get_children(self): """Return an iterator for the accessing children of this cursor.""" |

