I was very impressed with the collective thought process shown in the bug thread. It was quite constructive and I think demonstrative of why python has been such a successful project.
This is a fun numpy quirk:<p><pre><code> >>> 'x'*3.5
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can't multiply sequence by non-int of type 'float'
>>> import numpy as np
>>> print 'x'*np.float64(3.5)
xxx</code></pre>
Dave Beazley gave a talk showing this. See <a href="https://twitter.com/renfredxh/status/586653125970386945" rel="nofollow">https://twitter.com/renfredxh/status/586653125970386945</a>
This is what i see in javascript:<p>[] = ();
VM105:2 Uncaught ReferenceError: Invalid left-hand side in assignment<p>() = [];
VM114:2 Uncaught SyntaxError: Unexpected token )