summaryrefslogtreecommitdiff
path: root/databases/gadfly/files/patch-bindngs
diff options
context:
space:
mode:
Diffstat (limited to 'databases/gadfly/files/patch-bindngs')
-rw-r--r--databases/gadfly/files/patch-bindngs34
1 files changed, 0 insertions, 34 deletions
diff --git a/databases/gadfly/files/patch-bindngs b/databases/gadfly/files/patch-bindngs
deleted file mode 100644
index ebd668ac8689..000000000000
--- a/databases/gadfly/files/patch-bindngs
+++ /dev/null
@@ -1,34 +0,0 @@
---- gadfly/bindings.py.orig 2010-01-21 23:10:47.000000000 +0200
-+++ gadfly/bindings.py 2010-01-21 23:11:28.000000000 +0200
-@@ -61,7 +61,7 @@
-
- # create view statement stuff
- def createview(l, c):
-- [create, view, name, namelist, as, selection] = l
-+ [create, view, name, namelist, as_, selection] = l
- return semantics.CreateView(name, namelist, selection)
-
- optnamelist0 = returnNone
-@@ -288,11 +288,11 @@
- return others
-
- def trl1as(l,c):
-- [name, as, alias] = l
-+ [name, as_, alias] = l
- return [(name, alias)]
-
- def trlnas(l,c):
-- [name, as, alias, comma, others] = l
-+ [name, as_, alias, comma, others] = l
- others.insert(0, (name, alias))
- return others
-
-@@ -546,7 +546,7 @@
- return (exp, None) # no binding!
-
- def selectname(list, context):
-- [exp, as, alias] = list
-+ [exp, as_, alias] = list
- return (exp, alias)
-
- colalias = elt0