diff options
Diffstat (limited to 'Lib/test/test_popen.py')
-rw-r--r-- | Lib/test/test_popen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_popen.py b/Lib/test/test_popen.py index 397e4a31ce..209bb13148 100644 --- a/Lib/test/test_popen.py +++ b/Lib/test/test_popen.py @@ -10,7 +10,7 @@ import os, sys # Test that command-lines get down as we expect. # To do this we execute: -# python -c "import sys;print sys.argv" {rest_of_commandline} +# python -c "import sys;print(sys.argv)" {rest_of_commandline} # This results in Python being spawned and printing the sys.argv list. # We can then eval() the result of this, and see what each argv was. python = sys.executable |