SF bug #644345, Poor error message for augmented assign

Update error message.  Hopefully this is clearer to some people.
diff --git a/Python/compile.c b/Python/compile.c
index 7e8631d..1d01a26 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -2778,7 +2778,7 @@
 				}
 				if (assigning > OP_APPLY) {
 					com_error(c, PyExc_SyntaxError,
-				  "augmented assign to tuple not possible");
+				  "augmented assign to tuple literal not possible");
 					return;
 				}
 				break;
@@ -2791,7 +2791,7 @@
 				}
 				if (assigning > OP_APPLY) {
 					com_error(c, PyExc_SyntaxError,
-				  "augmented assign to list not possible");
+				  "augmented assign to list literal not possible");
 					return;
 				}
 				if (NCH(n) > 1