Staging
v0.5.1
https://github.com/python/cpython
Revision a33deb2d07b3a2bf0a6592c407f3f72122f9fa75 authored by Terry Jan Reedy on 10 November 2016, 23:42:58 UTC, committed by Terry Jan Reedy on 10 November 2016, 23:42:58 UTC
Add pointer to 'Encoding declaration' in Language Reference.
1 parent 48aa605
Raw File
Tip revision: a33deb2d07b3a2bf0a6592c407f3f72122f9fa75 authored by Terry Jan Reedy on 10 November 2016, 23:42:58 UTC
Issue #25507: Add back import needed for 2.x encoding warning box.
Tip revision: a33deb2
formatter_unicode.c
/* Implements the unicode (as opposed to string) version of the
   built-in formatter for unicode.  That is, unicode.__format__(). */

#include "Python.h"

#ifdef Py_USING_UNICODE

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

#define FORMAT_STRING _PyUnicode_FormatAdvanced

/* don't define FORMAT_LONG, FORMAT_FLOAT, and FORMAT_COMPLEX, since
   we can live with only the string versions of those.  The builtin
   format() will convert them to unicode. */

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

#endif
back to top