From 2ea1a241a1416116c6c6e09c311b437c4f078882 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 19 Sep 2008 14:17:34 +0000 Subject: [PATCH] PyTuple_Pack --- dtool/src/pystub/pystub.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dtool/src/pystub/pystub.cxx b/dtool/src/pystub/pystub.cxx index 4adf325ad6..ccaa1e44b9 100644 --- a/dtool/src/pystub/pystub.cxx +++ b/dtool/src/pystub/pystub.cxx @@ -94,6 +94,7 @@ extern "C" { EXPCL_DTOOLCONFIG int PyThreadState_Swap(...); EXPCL_DTOOLCONFIG int PyTuple_GetItem(...); EXPCL_DTOOLCONFIG int PyTuple_New(...); + EXPCL_DTOOLCONFIG int PyTuple_Pack(...); EXPCL_DTOOLCONFIG int PyTuple_Size(...); EXPCL_DTOOLCONFIG int PyTuple_Type(...); EXPCL_DTOOLCONFIG int PyType_GenericAlloc(...); @@ -201,6 +202,7 @@ int PyThreadState_New(...) { return 0; } int PyThreadState_Swap(...) { return 0; } int PyTuple_GetItem(...) { return 0; } int PyTuple_New(...) { return 0; } +int PyTuple_Pack(...) { return 0; } int PyTuple_Size(...) { return 0; }; int PyTuple_Type(...) { return 0; }; int PyType_GenericAlloc(...) { return 0; };