@@ -179,7 +179,7 @@ extern int PyTruffle_Arg_ParseTupleAndKeywords(PyObject *argv, PyObject *kwds, c
179
179
#ifdef PyArg_ParseTuple
180
180
#undef PyArg_ParseTuple
181
181
#endif
182
- #define PyArg_ParseTuple (ARGV , FORMAT , ...) PyArg_ParseTupleAndKeywords(ARGV, PyDict_New(), FORMAT, (char*[]) { NULL } , ##__VA_ARGS__)
182
+ #define PyArg_ParseTuple (ARGV , FORMAT , ...) PyArg_ParseTupleAndKeywords(ARGV, PyDict_New(), FORMAT, NULL, ##__VA_ARGS__)
183
183
184
184
#ifdef _PyArg_ParseTupleAndKeywordsFast
185
185
#undef _PyArg_ParseTupleAndKeywordsFast
@@ -189,7 +189,7 @@ extern int PyTruffle_Arg_ParseTupleAndKeywords(PyObject *argv, PyObject *kwds, c
189
189
#ifdef PyArg_Parse
190
190
#undef PyArg_Parse
191
191
#endif
192
- #define PyArg_Parse (ARGV , FORMAT , ...) PyArg_ParseTupleAndKeywords(ARGV, PyDict_New(), FORMAT, (char*[]) { NULL } , __VA_ARGS__)
192
+ #define PyArg_Parse (ARGV , FORMAT , ...) PyArg_ParseTupleAndKeywords(ARGV, PyDict_New(), FORMAT, NULL, __VA_ARGS__)
193
193
194
194
extern PyObject * PyTruffle_Unicode_FromFormat (const char * fmt , int s , void * v0 , void * v1 , void * v2 , void * v3 , void * v4 , void * v5 , void * v6 , void * v7 , void * v8 , void * v9 , void * v10 , void * v11 , void * v12 , void * v13 , void * v14 , void * v15 , void * v16 , void * v17 , void * v18 , void * v19 );
195
195
#define PyTruffle_Unicode_FromFormat_0 (F1 ) PyTruffle_Unicode_FromFormat(F1, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
0 commit comments