Fix vararg documentation for Python 3

Memory handling is different to Python 2.
This commit is contained in:
William S Fulton 2013-05-24 22:51:27 +01:00
commit f15eb3f5ec
3 changed files with 40 additions and 22 deletions

View file

@ -4,4 +4,4 @@ if (python_varargs_typemap.testfunc(1, 2.0, "three") != "three") :
raise RuntimeError("testfunc failed!")
if (python_varargs_typemap.testfunc(1, 2.0, "three", "four", "five") != "threefourfive") :
raise RuntimeError("testfunc failed!")
raise RuntimeError("testfunc failed! {}")