diff options
author | Raymond Hettinger <python@rcn.com> | 2004-12-03 11:45:13 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-12-03 11:45:13 +0000 |
commit | 665174834aadddbec4884d2e2673832b10f1a83c (patch) | |
tree | a07f7c1360fd1fcf08bc93531bd8d0556c3d8666 /Include/rangeobject.h | |
parent | Acknowledge contribution of a thorough tutorial review. (diff) | |
download | cpython-665174834aadddbec4884d2e2673832b10f1a83c.tar.gz cpython-665174834aadddbec4884d2e2673832b10f1a83c.tar.bz2 cpython-665174834aadddbec4884d2e2673832b10f1a83c.zip |
Remove PyRange_New().
Diffstat (limited to 'Include/rangeobject.h')
-rw-r--r-- | Include/rangeobject.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/rangeobject.h b/Include/rangeobject.h index 50aa0619e1a..359bcb69f5b 100644 --- a/Include/rangeobject.h +++ b/Include/rangeobject.h @@ -22,8 +22,6 @@ PyAPI_DATA(PyTypeObject) PyRange_Type; #define PyRange_Check(op) ((op)->ob_type == &PyRange_Type) -PyAPI_FUNC(PyObject *) PyRange_New(long, long, long, int); - #ifdef __cplusplus } #endif |