[issue14032] test_cmd_line_script prints undefined 'data' variable

2012-04-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset c4c67c2d8ffc by Nick Coghlan in branch '3.2': Close #14032: fix incorrect variable reference in test_cmd_line_script http://hg.python.org/cpython/rev/c4c67c2d8ffc -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected stat

[issue14032] test_cmd_line_script prints undefined 'data' variable

2012-02-24 Thread Nick Coghlan
Changes by Nick Coghlan : -- assignee: -> ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue14032] test_cmd_line_script prints undefined 'data' variable

2012-02-24 Thread Jason Yeo
Jason Yeo added the comment: hi, *friendly ping* how's the review for this patch? -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue14032] test_cmd_line_script prints undefined 'data' variable

2012-02-17 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue14032] test_cmd_line_script prints undefined 'data' variable

2012-02-16 Thread Jason Yeo
Changes by Jason Yeo : Removed file: http://bugs.python.org/file24532/mypatch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue14032] test_cmd_line_script prints undefined 'data' variable

2012-02-16 Thread Jason Yeo
Changes by Jason Yeo : Added file: http://bugs.python.org/file24532/mypatch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue14032] test_cmd_line_script prints undefined 'data' variable

2012-02-16 Thread Jason Yeo
New submission from Jason Yeo : Hi, I'm new around here. I was trying to fix issue 14026 and I found this problem. In test_cmd_line_script, the test_issue8202 tries to print an undefined data variable when verbose is set to > 1. I have a patch attached to print(out) instead of print(data). Ple