-
How do I play against the AI?.
2007-12-05 18:41:36 UTC in Floater Bridge Network
-
Logged In: YES
user_id=1619773
Looks like lynx cannot send files.
The patch changed: getattr(wrapped, attr)
to: getattr(wrapped, attr, {})
At then end of line 35 of Lib/functools.py.
2006-10-12 22:33:50 UTC in Python
-
functools.wraps assumes that the wrapped function
has a __dict__ attribute, which is not true for
builtins.
The attached patch provides an empty dictionaries
for functions that do not have the required
attributes. This will cause programs expecting an
AttributeError (if there are any) to fail.
2006-10-12 22:24:20 UTC in Python