From c0beabc2a57f6599a411d3b5579dd6c64ffd47b7 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 16 Jan 2012 17:29:05 -0500 Subject: move LINENO define to where it actually belongs --- Python/ast.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Python/ast.c') diff --git a/Python/ast.c b/Python/ast.c index 26163f7132..66b85b5a7f 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -521,10 +521,6 @@ static PyObject *parsestr(struct compiling *, const node *n, int *bytesmode); static PyObject *parsestrplus(struct compiling *, const node *n, int *bytesmode); -#ifndef LINENO -#define LINENO(n) ((n)->n_lineno) -#endif - #define COMP_GENEXP 0 #define COMP_LISTCOMP 1 #define COMP_SETCOMP 2 -- cgit v1.2.1