Staging
v0.5.1
https://github.com/python/cpython
Revision 98c8184f2faf72f6a061f45df579e0eee4d510cf authored by Tim Peters on 16 October 2000, 17:35:13 UTC, committed by Tim Peters on 16 October 2000, 17:35:13 UTC
oddball platforms (where, e.g., math.exp(+huge) still fails to raise
OverflowError) don't fail the std test suite when run normally.
1 parent a8268e9
Raw File
Tip revision: 98c8184f2faf72f6a061f45df579e0eee4d510cf authored by Tim Peters on 16 October 2000, 17:35:13 UTC
Test for math.* exceptional behavior only in verbose mode, so that the
Tip revision: 98c8184
bufferobject.h

/* Buffer object interface */

/* Note: the object's structure is private */

#ifndef Py_BUFFEROBJECT_H
#define Py_BUFFEROBJECT_H
#ifdef __cplusplus
extern "C" {
#endif


extern DL_IMPORT(PyTypeObject) PyBuffer_Type;

#define PyBuffer_Check(op) ((op)->ob_type == &PyBuffer_Type)

#define Py_END_OF_BUFFER	(-1)

extern DL_IMPORT(PyObject *) PyBuffer_FromObject(PyObject *base,
                                                 int offset, int size);
extern DL_IMPORT(PyObject *) PyBuffer_FromReadWriteObject(PyObject *base,
                                                          int offset,
                                                          int size);

extern DL_IMPORT(PyObject *) PyBuffer_FromMemory(void *ptr, int size);
extern DL_IMPORT(PyObject *) PyBuffer_FromReadWriteMemory(void *ptr, int size);

extern DL_IMPORT(PyObject *) PyBuffer_New(int size);

#ifdef __cplusplus
}
#endif
#endif /* !Py_BUFFEROBJECT_H */
back to top