Staging
v0.8.1
Revision 7f30a684c6bf8b381c74206228a3f1c2fae75d90 authored by Hirokazu Yamamoto on 17 August 2008, 09:46:56 UTC, committed by Hirokazu Yamamoto on 17 August 2008, 09:46:56 UTC
1 parent a0fdd72
Raw File
formatter_string.c
/***********************************************************************/
/* 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 "../Objects/stringlib/stringdefs.h"

#define FORMAT_STRING _PyBytes_FormatAdvanced
#define FORMAT_LONG   _PyLong_FormatAdvanced
#define FORMAT_INT    _PyInt_FormatAdvanced
#define FORMAT_FLOAT  _PyFloat_FormatAdvanced

#include "../Objects/stringlib/formatter.h"
back to top