summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2011-12-12 15:24:20 -0500
committerJasper St. Pierre <jstpierre@mecheye.net>2012-01-06 15:05:56 -0500
commit02410b7e36a5bc02a07e9f9661fed672715f09f8 (patch)
tree921e75d4bbd5e63cc6d9e84d68ab496a62169f30
parent43679362f90bf8977aba41f75cc3ae4a39353807 (diff)
downloadgobject-introspection-02410b7e36a5bc02a07e9f9661fed672715f09f8.tar.gz
scanner: Remove duplicate declaration of ErrorQuarkFunction
-rw-r--r--giscanner/ast.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index b228a561..91faff88 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -596,13 +596,6 @@ class ErrorQuarkFunction(Function):
self.error_domain = error_domain
-class ErrorQuarkFunction(Function):
-
- def __init__(self, name, retval, parameters, throws, symbol, error_domain):
- Function.__init__(self, name, retval, parameters, throws, symbol)
- self.error_domain = error_domain
-
-
class VFunction(Callable):
def __init__(self, name, retval, parameters, throws):