Staging
v0.8.1
Revision 38c1a4d1f4397381edaf9c67990ecb329d0e8132 authored by Antoine Pitrou on 10 November 2010, 22:37:33 UTC, committed by Antoine Pitrou on 10 November 2010, 22:37:33 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86404 | antoine.pitrou | 2010-11-10 23:36:43 +0100 (mer., 10 nov. 2010) | 3 lines

  Disable test_python_builders in test_xmlrpc_net, following buildbot upgrade on python.org
........
1 parent c40b25f
Raw File
formatter_unicode.c
/* implements the unicode (as opposed to string) version of the
   built-in formatters for string, int, float.  that is, the versions
   of int.__float__, etc., that take and return unicode objects */

#include "Python.h"
#include "../Objects/stringlib/unicodedefs.h"


#define FORMAT_STRING  _PyUnicode_FormatAdvanced
#define FORMAT_LONG    _PyLong_FormatAdvanced
#define FORMAT_FLOAT   _PyFloat_FormatAdvanced
#ifndef WITHOUT_COMPLEX
#define FORMAT_COMPLEX _PyComplex_FormatAdvanced
#endif

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