]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 72887 via svnmerge from
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 24 May 2009 15:46:13 +0000 (15:46 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 24 May 2009 15:46:13 +0000 (15:46 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72887 | antoine.pitrou | 2009-05-24 17:40:09 +0200 (dim., 24 mai 2009) | 6 lines

  Issue #1309352: fcntl now converts its third arguments to a C `long` rather
  than an int, which makes some operations possible under 64-bit Linux (e.g.
  DN_MULTISHOT with F_NOTIFY).
........

Lib/test/test_fcntl.py
Misc/NEWS
Modules/fcntlmodule.c

index 72748f95167e33bba2b85bb6ebe9dca550b70520..3c18f1d66dd43a396839feb927a49854a6710b99 100755 (executable)
@@ -59,7 +59,7 @@ class TestFcntl(unittest.TestCase):
         self.f = None
 
     def tearDown(self):
-        if not self.f.closed:
+        if self.f and not self.f.closed:
             self.f.close()
         unlink(TESTFN)
 
@@ -83,6 +83,21 @@ class TestFcntl(unittest.TestCase):
             rv = fcntl.fcntl(self.f, fcntl.F_SETLKW, lockdata)
         self.f.close()
 
+    def test_fcntl_64_bit(self):
+        # Issue #1309352: fcntl shouldn't fail when the third arg fits in a
+        # C 'long' but not in a C 'int'.
+        try:
+            cmd = fcntl.F_NOTIFY
+            # This flag is larger than 2**31 in 64-bit builds
+            flags = fcntl.DN_MULTISHOT
+        except AttributeError:
+            self.skipTest("F_NOTIFY or DN_MULTISHOT unavailable")
+        fd = os.open(os.path.dirname(os.path.abspath(TESTFN)), os.O_RDONLY)
+        try:
+            fcntl.fcntl(fd, cmd, flags)
+        finally:
+            os.close(fd)
+
 
 def test_main():
     run_unittest(TestFcntl)
index 378868e91d3d4f6b336a0e47bc239bf5d2222231..110efbeb77d4aef1c1681e108bbbb27e2763063f 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,10 @@ Core and Builtins
 Library
 -------
 
+- Issue #1309352: fcntl now converts its third arguments to a C `long` rather
+  than an int, which makes some operations possible under 64-bit Linux (e.g.
+  DN_MULTISHOT with F_NOTIFY).
+
 - Issue #5761: Add the name of the underlying file to the repr() of various
   IO objects.
 
index 5331ea8c4d690ac8f4910292d55b6e2bdacbcf8c..683c5b6d9f159883310f2ec7bef0e19a1f6a021f 100644 (file)
@@ -34,7 +34,7 @@ fcntl_fcntl(PyObject *self, PyObject *args)
 {
        int fd;
        int code;
-       int arg;
+       long arg;
        int ret;
        char *str;
        Py_ssize_t len;
@@ -61,7 +61,7 @@ fcntl_fcntl(PyObject *self, PyObject *args)
        PyErr_Clear();
        arg = 0;
        if (!PyArg_ParseTuple(args,
-             "O&i|i;fcntl requires a file or file descriptor,"
+             "O&i|l;fcntl requires a file or file descriptor,"
              " an integer and optionally a third integer or a string", 
                              conv_descriptor, &fd, &code, &arg)) {
          return NULL;