From add33601c2826a151718da295b15fbb8cf656e53 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 15 Aug 2004 07:21:25 +0000 Subject: Correct the order of application for decorators. Meant to be bottom-up and not top-down. Now matches the PEP. --- Python/compile.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Python/compile.c') diff --git a/Python/compile.c b/Python/compile.c index de29536528..79620c209f 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -4132,7 +4132,10 @@ com_decorators(struct compiling *c, node *n) REQ(CHILD(n, nch - 1), NEWLINE); ndecorators = 0; - for (i = NCH(n) - 1; i >= 0; --i) { + /* the application order for decorators is the reverse of how they are + listed; bottom-up */ + nch -= 1; + for (i = 0; i < nch; i+=1) { node *ch = CHILD(n, i); if (TYPE(ch) != NEWLINE) { com_decorator(c, ch); -- cgit v1.2.1