summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-12-03 11:45:13 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-12-03 11:45:13 (GMT)
commit665174834aadddbec4884d2e2673832b10f1a83c (patch)
treea07f7c1360fd1fcf08bc93531bd8d0556c3d8666 /Include
parentf9245578c918ee75b2dda0eefb50bd30e41651e7 (diff)
downloadcpython-665174834aadddbec4884d2e2673832b10f1a83c.zip
cpython-665174834aadddbec4884d2e2673832b10f1a83c.tar.gz
cpython-665174834aadddbec4884d2e2673832b10f1a83c.tar.bz2
Remove PyRange_New().
Diffstat (limited to 'Include')
-rw-r--r--Include/rangeobject.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/rangeobject.h b/Include/rangeobject.h
index 50aa061..359bcb6 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