Staging
v0.5.1
https://github.com/python/cpython
Revision 3a72b250eb63d5bafda8da8dba1bf6b90ec381c6 authored by Martin v. Löwis on 14 November 2010, 18:13:49 UTC, committed by Martin v. Löwis on 14 November 2010, 18:13:49 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84339 | martin.v.loewis | 2010-08-28 15:40:10 +0200 (Sa, 28 Aug 2010) | 1 line

  Stop packaging versioncheck.
........
  r84487 | martin.v.loewis | 2010-09-04 16:38:09 +0200 (Sa, 04 Sep 2010) | 3 lines

  Issue #1303434: Include PDBs in release.
  Patch by James Lee and Daniel Stutzbach.
........
1 parent 2e89cf3
Raw File
Tip revision: 3a72b250eb63d5bafda8da8dba1bf6b90ec381c6 authored by Martin v. Löwis on 14 November 2010, 18:13:49 UTC
Merged revisions 84339,84487 via svnmerge from
Tip revision: 3a72b25
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