Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Script interpreter #6109

Closed
martyngigg opened this issue May 4, 2012 · 1 comment
Closed

Script interpreter #6109

martyngigg opened this issue May 4, 2012 · 1 comment
Assignees
Milestone

Comments

@martyngigg
Copy link
Member

If you type the following code in to the script interpreter you do not get the output you expect. It should be typed out not pasted.

#!python
for i in range(3):
    for j in range(3):
        print i,j

It prints

0

0
0

1
0

2
1

0
1

1
1

2
2

0
2

1
2

2

instead of the numbers in pairs like so

0 0
0 1
0 2
1 0
1 1
1 2
2 0
2 1
2 2
@martyngigg martyngigg self-assigned this Jun 3, 2015
@martyngigg martyngigg added this to the Release 2.3 milestone Jun 3, 2015
@martyngigg
Copy link
Member Author

This issue was originally trac ticket 5263

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant