diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-23 20:06:31 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-23 20:06:31 (GMT) |
commit | 78ede7c96d016eb0149c876bcb32633e3182e904 (patch) | |
tree | 10b3a451203c6d05d6fd75af48af9ac85f6ba581 /Lib | |
parent | 0c2dd0c0a9498422645a2805a955b9a898298bc6 (diff) | |
download | cpython-78ede7c96d016eb0149c876bcb32633e3182e904.zip cpython-78ede7c96d016eb0149c876bcb32633e3182e904.tar.gz cpython-78ede7c96d016eb0149c876bcb32633e3182e904.tar.bz2 |
#18798: fix typo in test_fcntl. Patch by Vajrasky Kok.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_fcntl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py index e2a1b37..b8cda2f 100644 --- a/Lib/test/test_fcntl.py +++ b/Lib/test/test_fcntl.py @@ -11,7 +11,7 @@ import _testcapi import unittest from test.support import verbose, TESTFN, unlink, run_unittest, import_module -# Skip test if no fnctl module. +# Skip test if no fcntl module. fcntl = import_module('fcntl') |