Staging
v0.5.1
https://github.com/python/cpython
Revision 8570f6a402abc77646b491762fb61a1fa968f432 authored by Martin v. Löwis on 05 May 2008, 17:44:38 UTC, committed by Martin v. Löwis on 05 May 2008, 17:44:38 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r62724 | martin.v.loewis | 2008-05-05 19:16:58 +0200 (Mo, 05 Mai 2008) | 2 lines

  Issue #1734346: Support Unicode file names for zipfiles.
........
1 parent 43653bb
Raw File
Tip revision: 8570f6a402abc77646b491762fb61a1fa968f432 authored by Martin v. Löwis on 05 May 2008, 17:44:38 UTC
Merged revisions 62724 via svnmerge from
Tip revision: 8570f6a
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 "formatter_unicode.h"

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

#define FORMAT_STRING unicode_unicode__format__
#define FORMAT_LONG   unicode_long__format__
#define FORMAT_FLOAT  unicode_float__format__
#include "../Objects/stringlib/formatter.h"
back to top