Checkin the regenerated Python-ast.c and fix test_optparse.
diff --git a/Lib/optparse.py b/Lib/optparse.py
index 5122e49..8e1ef52 100644
--- a/Lib/optparse.py
+++ b/Lib/optparse.py
@@ -611,8 +611,7 @@
                 else:
                     setattr(self, attr, None)
         if attrs:
-            attrs = attrs.keys()
-            attrs.sort()
+            attrs = sorted(attrs.keys())
             raise OptionError(
                 "invalid keyword arguments: %s" % ", ".join(attrs),
                 self)