Author: Matti Picus <[email protected]>
Branch:
Changeset: r91312:e45afbe0ded7
Date: 2017-05-16 13:53 +0300
http://bitbucket.org/pypy/pypy/changeset/e45afbe0ded7/
Log: fix test
diff --git a/pypy/module/cpyext/test/test_dictobject.py
b/pypy/module/cpyext/test/test_dictobject.py
--- a/pypy/module/cpyext/test/test_dictobject.py
+++ b/pypy/module/cpyext/test/test_dictobject.py
@@ -298,7 +298,7 @@
while (PyDict_Next(arg, &pos, &key, &value))
ret ++;
/* test no crash if pos is not reset to 0*/
- while (PyDict_Next(args, &pos, &key, &value))
+ while (PyDict_Next(arg, &pos, &key, &value))
ret ++;
}
}
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit