Commit b540527f authored by Stefan Behnel's avatar Stefan Behnel

Remove accidental left-over name "gs" from Shadow.py that should not be part...

Remove accidental left-over name "gs" from Shadow.py that should not be part of the pure mode types.
parent 6ff85d93
......@@ -422,10 +422,12 @@ void = typedef(int, "void")
for t in int_types + float_types + complex_types + other_types:
for i in range(1, 4):
gs["%s_%s" % ('p'*i, t)] = globals()[t]._pointer(i)
gs["%s_%s" % ('p'*i, t)] = gs[t]._pointer(i)
void = typedef(None, "void")
NULL = p_void(0)
NULL = gs['p_void'](0)
del gs
integral = floating = numeric = _FusedType()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment