diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 47bf42c73a7..6c7c5b0afa6 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2009,7 +2009,7 @@ Files have the following methods: the :keyword:`with` statement. For example, the following code will automatically close *f* when the :keyword:`with` block is exited:: - from __future__ import with_statement + from __future__ import with_statement # This isn't required in Python 2.6 with open("hello.txt") as f: for line in f: