Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4afbba3d
Commit
4afbba3d
authored
Jun 13, 2009
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
keep the slice.step field as NULL if no step expression is given
parent
cb73bdac
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
8 deletions
+10
-8
Lib/test/test_ast.py
Lib/test/test_ast.py
+6
-0
Misc/NEWS
Misc/NEWS
+3
-0
Python/ast.c
Python/ast.c
+1
-8
No files found.
Lib/test/test_ast.py
View file @
4afbba3d
...
...
@@ -146,6 +146,12 @@ class AST_Tests(unittest.TestCase):
self
.
assertEquals
(
to_tuple
(
ast_tree
),
o
)
self
.
_assert_order
(
ast_tree
,
(
0
,
0
))
def
test_slice
(
self
):
slc
=
ast
.
parse
(
"x[::]"
).
body
[
0
].
value
.
slice
self
.
assertIsNone
(
slc
.
upper
)
self
.
assertIsNone
(
slc
.
lower
)
self
.
assertIsNone
(
slc
.
step
)
def
test_nodeclasses
(
self
):
x
=
ast
.
BinOp
(
1
,
2
,
3
,
lineno
=
0
)
self
.
assertEquals
(
x
.
left
,
1
)
...
...
Misc/NEWS
View file @
4afbba3d
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
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.
...
...
Python/ast.c
View file @
4afbba3d
...
...
@@ -1468,14 +1468,7 @@ ast_for_slice(struct compiling *c, const node *n)
ch
=
CHILD
(
n
,
NCH
(
n
)
-
1
);
if
(
TYPE
(
ch
)
==
sliceop
)
{
if
(
NCH
(
ch
)
==
1
)
{
/* No expression, so step is None */
ch
=
CHILD
(
ch
,
0
);
step
=
Name
(
new_identifier
(
"None"
,
c
->
c_arena
),
Load
,
LINENO
(
ch
),
ch
->
n_col_offset
,
c
->
c_arena
);
if
(
!
step
)
return
NULL
;
}
else
{
if
(
NCH
(
ch
)
!=
1
)
{
ch
=
CHILD
(
ch
,
1
);
if
(
TYPE
(
ch
)
==
test
)
{
step
=
ast_for_expr
(
c
,
ch
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment