---------------------------------------- > From: invalid@invalid.invalid > Subject: Re: Python #ifdef [...] > You're trying to make this a lot harder than it really is: > > if sys.version_info[0] == 3: > def original(n): > m = 0 > for b in n.to_bytes(6, 'big'): > m = 256*m + b > return m > else: > def original(n): > <something else?> > > > -- > Grant Edwards grant.b.edwards Yow! Am I having fun yet? > at > gmail.com
Haha! That's it!!! Just realized how funny this can be: ;) ### never to be opened ### def pandoras_box(v): return v/0.0 if customer_didnt_pay(): pandoras_box() #lol -- http://mail.python.org/mailman/listinfo/python-list