commit | 4afbba3d340655bb8be2a97b76fe689be7f0c013 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sat Jun 13 01:40:00 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sat Jun 13 01:40:00 2009 +0000 |
tree | 60357e254452ffe5f7256284a5858f5e6fb93ca2 | |
parent | cb73bdac9565e7d4a9133635f802f446a915ca88 [diff] [blame] |
keep the slice.step field as NULL if no step expression is given
diff --git a/Misc/NEWS b/Misc/NEWS index 3a4e1ac..1192618 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and Builtins ----------------- +- 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.