From 52cc1d838f4fee573e57b5b182d8e5f5db63240f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 18 Mar 2007 15:41:51 +0000 Subject: Implement PEP 3115 -- new metaclass syntax and semantics. The compiler package hasn't been updated yet; test_compiler.py fails. Otherwise all tests seem to be passing now. There are no occurrences of __metaclass__ left in the standard library. Docs have not been updated. --- Python/graminit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/graminit.c') diff --git a/Python/graminit.c b/Python/graminit.c index 5c7fb6a5e2..12872196a1 100644 --- a/Python/graminit.c +++ b/Python/graminit.c @@ -1635,7 +1635,7 @@ static arc arcs_76_2[2] = { {23, 4}, }; static arc arcs_76_3[2] = { - {9, 5}, + {14, 5}, {15, 6}, }; static arc arcs_76_4[1] = { -- cgit v1.2.1