Staging
v0.5.1
https://github.com/python/cpython
Revision 67f0b6c5f29ea85331832a7798dfbca919fd2cce authored by Éric Araujo on 15 December 2010, 19:30:15 UTC, committed by Éric Araujo on 15 December 2010, 19:30:15 UTC
1 parent e434b3b
Raw File
Tip revision: 67f0b6c5f29ea85331832a7798dfbca919fd2cce authored by Éric Araujo on 15 December 2010, 19:30:15 UTC
Use nested method directives, rewrap long lines, fix whitespace.
Tip revision: 67f0b6c
hashlib.h
/* Common code for use by all hashlib related modules. */

/*
 * Given a PyObject* obj, fill in the Py_buffer* viewp with the result
 * of PyObject_GetBuffer.  Sets and exception and issues a return NULL
 * on any errors.
 */
#define GET_BUFFER_VIEW_OR_ERROUT(obj, viewp) do { \
        if (PyUnicode_Check((obj))) { \
            PyErr_SetString(PyExc_TypeError, \
                            "Unicode-objects must be encoded before hashing");\
            return NULL; \
        } \
        if (!PyObject_CheckBuffer((obj))) { \
            PyErr_SetString(PyExc_TypeError, \
                            "object supporting the buffer API required"); \
            return NULL; \
        } \
        if (PyObject_GetBuffer((obj), (viewp), PyBUF_SIMPLE) == -1) { \
            return NULL; \
        } \
        if ((viewp)->ndim > 1) { \
            PyErr_SetString(PyExc_BufferError, \
                            "Buffer must be single dimension"); \
            PyBuffer_Release((viewp)); \
            return NULL; \
        } \
    } while(0);
back to top