diff options
Diffstat (limited to 'Include/formatter_string.h')
-rw-r--r-- | Include/formatter_string.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Include/formatter_string.h b/Include/formatter_string.h new file mode 100644 index 0000000000..14c48118c5 --- /dev/null +++ b/Include/formatter_string.h @@ -0,0 +1,12 @@ +PyObject * +string__format__(PyObject *self, PyObject *args); + +PyObject * +string_long__format__(PyObject *self, PyObject *args); + +PyObject * +string_int__format__(PyObject *self, PyObject *args); + +PyObject * +string_float__format__(PyObject *self, PyObject *args); + |