diff options
author | Guido van Rossum <guido@python.org> | 1997-01-27 23:25:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-01-27 23:25:37 (GMT) |
commit | 866016b92d9f041bf5c56cbf4b3ae436109913da (patch) | |
tree | c26e2a7b6b83927bf433ffa9f5437a839e21ebcd /Lib/test/test_new.py | |
parent | d0eb429b8894be2eaaa63af43c68887697d46c51 (diff) | |
download | cpython-866016b92d9f041bf5c56cbf4b3ae436109913da.zip cpython-866016b92d9f041bf5c56cbf4b3ae436109913da.tar.gz cpython-866016b92d9f041bf5c56cbf4b3ae436109913da.tar.bz2 |
new.code() has grown another foot, eh, another two arguments.
Diffstat (limited to 'Lib/test/test_new.py')
-rw-r--r-- | Lib/test/test_new.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_new.py b/Lib/test/test_new.py index 628d8ef..b1e2ae7 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, 3, codestr, (), (), (), "<string>", "<name>") +d = new.code(3, 3, 3, 3, codestr, (), (), (), "<string>", "<name>", 1, "") if verbose: print d |