diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-05-13 04:55:24 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-05-13 04:55:24 +0000 |
commit | 752abd0d3cc66f84f551650b8424248b202a16a4 (patch) | |
tree | f5302f8a246115f3f61a1414a94c8d2ce12a3a01 /Lib/test/test_popen.py | |
parent | 8321f978918e3ae4de18672770c6504dcae82343 (diff) | |
download | cpython-git-752abd0d3cc66f84f551650b8424248b202a16a4.tar.gz |
Convert a lot of print statements to print functions in docstrings,
documentation, and unused/rarely used functions.
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 |