Kaydet (Commit) 0cbaff44 authored tarafından Guido van Rossum's avatar Guido van Rossum

Fix case where you start a new group immediately after a label.

Thanks to Ka-Ping Yee.
üst c148cd6c
......@@ -456,7 +456,7 @@ symcomp(pattern, gdict)
*g++ = *o++;
}
}
if (*o == '[' && !escaped) {
else if (*o == '[' && !escaped) {
*n++ = *o;
++o; /* eat the char following '[' */
*n++ = *o;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment