mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
This commit is contained in:
parent
44121a6bc9
commit
91a681debf
51 changed files with 661 additions and 665 deletions
|
@ -15,11 +15,11 @@ Range objects behave like the corresponding tuple objects except that
|
|||
they are represented by a start, stop, and step datamembers.
|
||||
*/
|
||||
|
||||
extern DL_IMPORT(PyTypeObject) PyRange_Type;
|
||||
PyAPI_DATA(PyTypeObject) PyRange_Type;
|
||||
|
||||
#define PyRange_Check(op) ((op)->ob_type == &PyRange_Type)
|
||||
|
||||
extern DL_IMPORT(PyObject *) PyRange_New(long, long, long, int);
|
||||
PyAPI_FUNC(PyObject *) PyRange_New(long, long, long, int);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue