# HG changeset patch # User paulb@localhost.localdomain # Date 1180311594 -7200 # Node ID 22acb36b971f34cf70064cba7e92e9c853471146 # Parent 384e8cc2768f2725ff2c974553849d8de220af8d Properly fixed tuple.__init__, removing the name error used for testing missing type support. diff -r 384e8cc2768f -r 22acb36b971f lib/builtins.py --- a/lib/builtins.py Mon May 28 02:18:09 2007 +0200 +++ b/lib/builtins.py Mon May 28 02:19:54 2007 +0200 @@ -797,7 +797,7 @@ class tuple: def __init__(self, args): for arg in args: - self.value = value + self.value = arg def __getitem__(self, index): if -len(self) <= index < len(self):