[issue6978] compiler.transformer dict key bug d[1,] = 1

Kees Bos report at bugs.python.org
Wed Sep 23 16:11:27 CEST 2009


Kees Bos <k.bos at zx.nl> added the comment:

I just see that my patch is not correct, since the following is
supported by the language:

O[1:2:3, 4:5:6]

Where O[1:2:3, 4:5:6] == O[slice(1,2,3), slice(4,5,6)] ==
O.__getitem__((slice(1,2,3), slice(4,5,6)))

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue6978>
_______________________________________


More information about the Python-bugs-list mailing list