commit | c79461b1648c9209c3652184572a17eef0a76202 | [log] [tgz] |
---|---|---|
author | Collin Winter <collinw@gmail.com> | Sat Sep 01 23:34:30 2007 +0000 |
committer | Collin Winter <collinw@gmail.com> | Sat Sep 01 23:34:30 2007 +0000 |
tree | 47c6238c8c47c4881f6f0523ea86d201cea1fc94 | |
parent | 2ac012130549b1ef51ebce11148d01eaca1a7033 [diff] [blame] |
Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls.
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 305c26f..1ba4810 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst
@@ -307,7 +307,7 @@ Example use:: with captured_stdout() as s: - print "hello" + print("hello") assert s.getvalue() == "hello"