changeset: 91097:8b93cdccd872 user: Victor Stinner date: Mon Jun 09 00:05:47 2014 +0200 files: Lib/tempfile.py description: Issue #21515: Fix typo in a comment, thanks Arfrever for the report diff -r 1a5dbc902daa -r 8b93cdccd872 Lib/tempfile.py --- a/Lib/tempfile.py Sun Jun 08 14:43:08 2014 -0500 +++ b/Lib/tempfile.py Mon Jun 09 00:05:47 2014 +0200 @@ -505,7 +505,7 @@ fd = _os.open(dir, flags2, 0o600) except IsADirectoryError: # Linux kernel older than 3.11 ignores O_TMPFILE flag. - # Set flag to None to not try again. + # Set flag to False to not try again. _O_TMPFILE_WORKS = False except OSError: # The filesystem of the directory does not support O_TMPFILE.