aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-12-03 11:45:13 +0000
committerRaymond Hettinger <python@rcn.com>2004-12-03 11:45:13 +0000
commit665174834aadddbec4884d2e2673832b10f1a83c (patch)
treea07f7c1360fd1fcf08bc93531bd8d0556c3d8666 /Include/rangeobject.h
parentAcknowledge contribution of a thorough tutorial review. (diff)
downloadcpython-665174834aadddbec4884d2e2673832b10f1a83c.tar.gz
cpython-665174834aadddbec4884d2e2673832b10f1a83c.tar.bz2
cpython-665174834aadddbec4884d2e2673832b10f1a83c.zip
Remove PyRange_New().
Diffstat (limited to 'Include/rangeobject.h')
-rw-r--r--Include/rangeobject.h2
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