# HG changeset patch # User paulb@localhost.localdomain # Date 1165186061 -3600 # Node ID 10e0442613e0c544daceaa4755c95f6ec05a7f38 # Parent ed7d5099c3075f5e8286aabaec3e42f4ef40bb57 Fixed keyword argument printing. diff -r ed7d5099c307 -r 10e0442613e0 simplified.py --- a/simplified.py Sun Dec 03 23:47:28 2006 +0100 +++ b/simplified.py Sun Dec 03 23:47:41 2006 +0100 @@ -248,7 +248,7 @@ for arg in self.pos_args: arg.pprint(indent + 2, "( ", stream=stream) for name, arg in self.kw_args.items(): - arg.pprint(indent + 2, "( %s=" % name, stream=stream) + arg.pprint(indent + 2, "( ", stream=stream) if hasattr(self, "star") and self.star: self.star.pprint(indent + 2, "( ", stream=stream) if hasattr(self, "dstar") and self.dstar: