SOURCES: python-bug-1588287.patch (NEW) - fix bug 1588287
arekm
arekm at pld-linux.org
Tue Nov 21 00:57:00 CET 2006
Author: arekm Date: Mon Nov 20 23:57:00 2006 GMT
Module: SOURCES Tag: HEAD
---- Log message:
- fix bug 1588287
---- Files affected:
SOURCES:
python-bug-1588287.patch (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: SOURCES/python-bug-1588287.patch
diff -u /dev/null SOURCES/python-bug-1588287.patch:1.1
--- /dev/null Tue Nov 21 00:57:00 2006
+++ SOURCES/python-bug-1588287.patch Tue Nov 21 00:56:55 2006
@@ -0,0 +1,24 @@
+Index: Python/ast.c
+===================================================================
+--- Python/ast.c (wersja 52621)
++++ Python/ast.c (wersja 52622)
+@@ -538,6 +538,7 @@
+ || TYPE(n) == listmaker
+ || TYPE(n) == testlist_gexp
+ || TYPE(n) == testlist_safe
++ || TYPE(n) == testlist1
+ );
+
+ seq = asdl_seq_new((NCH(n) + 1) / 2, c->c_arena);
+Index: Lib/test/test_grammar.py
+===================================================================
+--- Lib/test/test_grammar.py (wersja 52621)
++++ Lib/test/test_grammar.py (wersja 52622)
+@@ -709,6 +709,7 @@
+
+ x = `x`
+ x = `1 or 2 or 3`
++x = `1,2`
+ x = x
+ x = 'x'
+ x = 123
================================================================
More information about the pld-cvs-commit
mailing list