summaryrefslogtreecommitdiff
path: root/Python/formatter_string.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/formatter_string.c')
-rw-r--r--Python/formatter_string.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/Python/formatter_string.c b/Python/formatter_string.c
new file mode 100644
index 0000000000..1041852bf3
--- /dev/null
+++ b/Python/formatter_string.c
@@ -0,0 +1,15 @@
+/***********************************************************************/
+/* Implements the string (as opposed to unicode) version of the
+ built-in formatters for string, int, float. That is, the versions
+ of int.__float__, etc., that take and return string objects */
+
+#include "Python.h"
+#include "formatter_string.h"
+
+#include "../Objects/stringlib/stringdefs.h"
+
+#define FORMAT_STRING string__format__
+#define FORMAT_LONG string_long__format__
+#define FORMAT_INT string_int__format__
+#define FORMAT_FLOAT string_float__format__
+#include "../Objects/stringlib/formatter.h"