Closed differentmatt closed 10 years ago
Incorrectly calls indexOf on the dictionary, as if it's a sequence.
a = {'p': 5} 'p' in a
var a = new __pythonRuntime.objects.dict([ 'p', 5 ]); a.indexOf('p') >= 0;
Incorrectly calls indexOf on the dictionary, as if it's a sequence.