Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Include/codecs.h

    r2 r388  
    134134/* Unicode encoding error handling callback registry API */
    135135
    136 /* Register the error handling callback function error under the name
     136/* Register the error handling callback function error under the given
    137137   name. This function will be called by the codec when it encounters
    138138   unencodable characters/undecodable bytes and doesn't know the
     
    142142PyAPI_FUNC(int) PyCodec_RegisterError(const char *name, PyObject *error);
    143143
    144 /* Lookup the error handling callback function registered under the
    145    name error. As a special case NULL can be passed, in which case
     144/* Lookup the error handling callback function registered under the given
     145   name. As a special case NULL can be passed, in which case
    146146   the error handling callback for "strict" will be returned. */
    147147PyAPI_FUNC(PyObject *) PyCodec_LookupError(const char *name);
     
    153153PyAPI_FUNC(PyObject *) PyCodec_IgnoreErrors(PyObject *exc);
    154154
    155 /* replace the unicode error with ? or U+FFFD */
     155/* replace the unicode encode error with ? or U+FFFD */
    156156PyAPI_FUNC(PyObject *) PyCodec_ReplaceErrors(PyObject *exc);
    157157
Note: See TracChangeset for help on using the changeset viewer.