Uh oh. Fresh CVS update and make clean, make: -------------------- snip snip -------------------- Python 1.5.2+ (#20, Mar 28 2000, 19:37:38) [GCC 2.8.1] on sunos5 Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam >>> def sum(*args): ... s = 0 ... for x in args: s = s + x ... return s ... >>> class Nums: ... def __getitem__(self, i): ... if i >= 10 or i < 0: raise IndexError ... return i ... >>> n = Nums() >>> for i in n: print i ... 0 1 2 3 4 5 6 7 8 9 >>> sum(*n) Traceback (innermost last): File "<stdin>", line 1, in ? SystemError: bad argument to internal function -------------------- snip snip -------------------- -Barry
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4