the Slice in x[::] has to have step as None to help the interpreter

This commit is contained in:
Benjamin Peterson 2009-07-20 20:28:08 +00:00
parent a2514f4ce9
commit 4879c907ce
3 changed files with 17 additions and 5 deletions

View file

@ -44,9 +44,6 @@ Core and Builtins
- Assignment to None using import statements now raises a SyntaxError.
- In the slice AST type, the step field will always be None if a step expression
is not specified.
- Issue #4547: When debugging a very large function, it was not always
possible to update the lineno attribute of the current frame.