aboutsummaryrefslogtreecommitdiff
path: root/src/pl/plpython/expected/plpython_setof.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/pl/plpython/expected/plpython_setof.out')
-rw-r--r--src/pl/plpython/expected/plpython_setof.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/expected/plpython_setof.out b/src/pl/plpython/expected/plpython_setof.out
index 03a97194c82..ebf896df01f 100644
--- a/src/pl/plpython/expected/plpython_setof.out
+++ b/src/pl/plpython/expected/plpython_setof.out
@@ -13,7 +13,7 @@ return [ content ]*count
$$ LANGUAGE plpythonu;
CREATE FUNCTION test_setof_as_tuple(count integer, content text) RETURNS SETOF text AS $$
t = ()
-for i in xrange(count):
+for i in range(count):
t += ( content, )
return t
$$ LANGUAGE plpythonu;