From: Ezio Melotti Date: Fri, 23 Aug 2013 20:06:31 +0000 (+0300) Subject: #18798: fix typo in test_fcntl. Patch by Vajrasky Kok. X-Git-Tag: v3.4.0a2~136^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78ede7c96d016eb0149c876bcb32633e3182e904;p=thirdparty%2FPython%2Fcpython.git #18798: fix typo in test_fcntl. Patch by Vajrasky Kok. --- diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py index e2a1b374cddc..b8cda2f10846 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')