summaryrefslogtreecommitdiff
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2004-07-08 01:49:00 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2004-07-08 01:49:00 +0000
commit021d0870a7eb73a97492c0e65e98d8555440d8fd (patch)
treeb6ea5849ab8ecefd2e9fd1922ba32478d454baac /Python/ceval.c
parent8357d6452775aea64dc689c740fc28f07dcd26b8 (diff)
downloadcpython-021d0870a7eb73a97492c0e65e98d8555440d8fd.tar.gz
Remove unused macros in .c files
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 39b7633291..152b942128 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3804,9 +3804,6 @@ ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
return result;
}
-#define SLICE_ERROR_MSG \
- "standard sequence type does not support step size other than one"
-
/* Extract a slice index from a PyInt or PyLong, and store in *pi.
Silently reduce values larger than INT_MAX to INT_MAX, and silently
boost values less than -INT_MAX to 0. Return 0 on error, 1 on success.