summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-01-17 21:12:06 (GMT)
committerGuido van Rossum <guido@python.org>1997-01-17 21:12:06 (GMT)
commite9fd28dae50d5e91c7e62e295b1de484c2c56746 (patch)
tree8491a89a56e6747c13832183a0b869796635ce4f /Lib/test
parent792fd435ecc68de9c85e4f2b28fb28425dc1bd8e (diff)
downloadcpython-e9fd28dae50d5e91c7e62e295b1de484c2c56746.zip
cpython-e9fd28dae50d5e91c7e62e295b1de484c2c56746.tar.gz
cpython-e9fd28dae50d5e91c7e62e295b1de484c2c56746.tar.bz2
Add stacksize argument to new.code().
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_new.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_new.py b/Lib/test/test_new.py
index 887702d..628d8ef 100644
--- a/Lib/test/test_new.py
+++ b/Lib/test/test_new.py
@@ -58,6 +58,6 @@ if g['c'] <> 3:
# bogus test of new.code()
print 'new.code()'
-d = new.code(3, 3, 3, codestr, (), (), (), "<string>", "<name>")
+d = new.code(3, 3, 3, 3, codestr, (), (), (), "<string>", "<name>")
if verbose:
print d