#48 Update to 3.9.2rc1
Merged 3 years ago by churchyard. Opened 3 years ago by thrnciar.
rpms/ thrnciar/python3.9 update-to-3.9.2rc1  into  rawhide

@@ -1,184 +0,0 @@ 

- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001

- From: "Miss Islington (bot)"

-  <31488909+miss-islington@users.noreply.github.com>

- Date: Mon, 18 Jan 2021 13:29:31 -0800

- Subject: [PATCH] 00357: bpo-42938: Replace snprintf with Python unicode

-  formatting in ctypes param reprs. (GH-24247)

- 

- (cherry picked from commit 916610ef90a0d0761f08747f7b0905541f0977c7)

- 

- Co-authored-by: Benjamin Peterson <benjamin@python.org>

- ---

-  Lib/ctypes/test/test_parameters.py            | 43 ++++++++++++++++

-  .../2021-01-18-09-27-31.bpo-42938.4Zn4Mp.rst  |  2 +

-  Modules/_ctypes/callproc.c                    | 51 +++++++------------

-  3 files changed, 64 insertions(+), 32 deletions(-)

-  create mode 100644 Misc/NEWS.d/next/Security/2021-01-18-09-27-31.bpo-42938.4Zn4Mp.rst

- 

- diff --git a/Lib/ctypes/test/test_parameters.py b/Lib/ctypes/test/test_parameters.py

- index e4c25fd880..531894fdec 100644

- --- a/Lib/ctypes/test/test_parameters.py

- +++ b/Lib/ctypes/test/test_parameters.py

- @@ -201,6 +201,49 @@ class SimpleTypesTestCase(unittest.TestCase):

-          with self.assertRaises(ZeroDivisionError):

-              WorseStruct().__setstate__({}, b'foo')

-  

- +    def test_parameter_repr(self):

- +        from ctypes import (

- +            c_bool,

- +            c_char,

- +            c_wchar,

- +            c_byte,

- +            c_ubyte,

- +            c_short,

- +            c_ushort,

- +            c_int,

- +            c_uint,

- +            c_long,

- +            c_ulong,

- +            c_longlong,

- +            c_ulonglong,

- +            c_float,

- +            c_double,

- +            c_longdouble,

- +            c_char_p,

- +            c_wchar_p,

- +            c_void_p,

- +        )

- +        self.assertRegex(repr(c_bool.from_param(True)), r"^<cparam '\?' at 0x[A-Fa-f0-9]+>$")

- +        self.assertEqual(repr(c_char.from_param(97)), "<cparam 'c' ('a')>")

- +        self.assertRegex(repr(c_wchar.from_param('a')), r"^<cparam 'u' at 0x[A-Fa-f0-9]+>$")

- +        self.assertEqual(repr(c_byte.from_param(98)), "<cparam 'b' (98)>")

- +        self.assertEqual(repr(c_ubyte.from_param(98)), "<cparam 'B' (98)>")

- +        self.assertEqual(repr(c_short.from_param(511)), "<cparam 'h' (511)>")

- +        self.assertEqual(repr(c_ushort.from_param(511)), "<cparam 'H' (511)>")

- +        self.assertRegex(repr(c_int.from_param(20000)), r"^<cparam '[li]' \(20000\)>$")

- +        self.assertRegex(repr(c_uint.from_param(20000)), r"^<cparam '[LI]' \(20000\)>$")

- +        self.assertRegex(repr(c_long.from_param(20000)), r"^<cparam '[li]' \(20000\)>$")

- +        self.assertRegex(repr(c_ulong.from_param(20000)), r"^<cparam '[LI]' \(20000\)>$")

- +        self.assertRegex(repr(c_longlong.from_param(20000)), r"^<cparam '[liq]' \(20000\)>$")

- +        self.assertRegex(repr(c_ulonglong.from_param(20000)), r"^<cparam '[LIQ]' \(20000\)>$")

- +        self.assertEqual(repr(c_float.from_param(1.5)), "<cparam 'f' (1.5)>")

- +        self.assertEqual(repr(c_double.from_param(1.5)), "<cparam 'd' (1.5)>")

- +        self.assertEqual(repr(c_double.from_param(1e300)), "<cparam 'd' (1e+300)>")

- +        self.assertRegex(repr(c_longdouble.from_param(1.5)), r"^<cparam ('d' \(1.5\)|'g' at 0x[A-Fa-f0-9]+)>$")

- +        self.assertRegex(repr(c_char_p.from_param(b'hihi')), "^<cparam 'z' \(0x[A-Fa-f0-9]+\)>$")

- +        self.assertRegex(repr(c_wchar_p.from_param('hihi')), "^<cparam 'Z' \(0x[A-Fa-f0-9]+\)>$")

- +        self.assertRegex(repr(c_void_p.from_param(0x12)), r"^<cparam 'P' \(0x0*12\)>$")

- +

-  ################################################################

-  

-  if __name__ == '__main__':

- diff --git a/Misc/NEWS.d/next/Security/2021-01-18-09-27-31.bpo-42938.4Zn4Mp.rst b/Misc/NEWS.d/next/Security/2021-01-18-09-27-31.bpo-42938.4Zn4Mp.rst

- new file mode 100644

- index 0000000000..7df65a156f

- --- /dev/null

- +++ b/Misc/NEWS.d/next/Security/2021-01-18-09-27-31.bpo-42938.4Zn4Mp.rst

- @@ -0,0 +1,2 @@

- +Avoid static buffers when computing the repr of :class:`ctypes.c_double` and

- +:class:`ctypes.c_longdouble` values.

- diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c

- index b0a36a3024..f2506de544 100644

- --- a/Modules/_ctypes/callproc.c

- +++ b/Modules/_ctypes/callproc.c

- @@ -489,58 +489,47 @@ is_literal_char(unsigned char c)

-  static PyObject *

-  PyCArg_repr(PyCArgObject *self)

-  {

- -    char buffer[256];

-      switch(self->tag) {

-      case 'b':

-      case 'B':

- -        sprintf(buffer, "<cparam '%c' (%d)>",

- +        return PyUnicode_FromFormat("<cparam '%c' (%d)>",

-              self->tag, self->value.b);

- -        break;

-      case 'h':

-      case 'H':

- -        sprintf(buffer, "<cparam '%c' (%d)>",

- +        return PyUnicode_FromFormat("<cparam '%c' (%d)>",

-              self->tag, self->value.h);

- -        break;

-      case 'i':

-      case 'I':

- -        sprintf(buffer, "<cparam '%c' (%d)>",

- +        return PyUnicode_FromFormat("<cparam '%c' (%d)>",

-              self->tag, self->value.i);

- -        break;

-      case 'l':

-      case 'L':

- -        sprintf(buffer, "<cparam '%c' (%ld)>",

- +        return PyUnicode_FromFormat("<cparam '%c' (%ld)>",

-              self->tag, self->value.l);

- -        break;

-  

-      case 'q':

-      case 'Q':

- -        sprintf(buffer,

- -#ifdef MS_WIN32

- -            "<cparam '%c' (%I64d)>",

- -#else

- -            "<cparam '%c' (%lld)>",

- -#endif

- +        return PyUnicode_FromFormat("<cparam '%c' (%lld)>",

-              self->tag, self->value.q);

- -        break;

-      case 'd':

- -        sprintf(buffer, "<cparam '%c' (%f)>",

- -            self->tag, self->value.d);

- -        break;

- -    case 'f':

- -        sprintf(buffer, "<cparam '%c' (%f)>",

- -            self->tag, self->value.f);

- -        break;

- -

- +    case 'f': {

- +        PyObject *f = PyFloat_FromDouble((self->tag == 'f') ? self->value.f : self->value.d);

- +        if (f == NULL) {

- +            return NULL;

- +        }

- +        PyObject *result = PyUnicode_FromFormat("<cparam '%c' (%R)>", self->tag, f);

- +        Py_DECREF(f);

- +        return result;

- +    }

-      case 'c':

-          if (is_literal_char((unsigned char)self->value.c)) {

- -            sprintf(buffer, "<cparam '%c' ('%c')>",

- +            return PyUnicode_FromFormat("<cparam '%c' ('%c')>",

-                  self->tag, self->value.c);

-          }

-          else {

- -            sprintf(buffer, "<cparam '%c' ('\\x%02x')>",

- +            return PyUnicode_FromFormat("<cparam '%c' ('\\x%02x')>",

-                  self->tag, (unsigned char)self->value.c);

-          }

- -        break;

-  

-  /* Hm, are these 'z' and 'Z' codes useful at all?

-     Shouldn't they be replaced by the functionality of c_string

- @@ -549,22 +538,20 @@ PyCArg_repr(PyCArgObject *self)

-      case 'z':

-      case 'Z':

-      case 'P':

- -        sprintf(buffer, "<cparam '%c' (%p)>",

- +        return PyUnicode_FromFormat("<cparam '%c' (%p)>",

-              self->tag, self->value.p);

-          break;

-  

-      default:

-          if (is_literal_char((unsigned char)self->tag)) {

- -            sprintf(buffer, "<cparam '%c' at %p>",

- +            return PyUnicode_FromFormat("<cparam '%c' at %p>",

-                  (unsigned char)self->tag, (void *)self);

-          }

-          else {

- -            sprintf(buffer, "<cparam 0x%02x at %p>",

- +            return PyUnicode_FromFormat("<cparam 0x%02x at %p>",

-                  (unsigned char)self->tag, (void *)self);

-          }

- -        break;

-      }

- -    return PyUnicode_FromString(buffer);

-  }

-  

-  static PyMemberDef PyCArgType_members[] = {

file modified
+6 -7
@@ -13,11 +13,11 @@ 

  

  #  WARNING  When rebasing to a new Python version,

  #           remember to update the python3-docs package as well

- %global general_version %{pybasever}.1

- #global prerel ...

+ %global general_version %{pybasever}.2

+ %global prerel rc1

  %global upstream_version %{general_version}%{?prerel}

  Version: %{general_version}%{?prerel:~%{prerel}}

- Release: 5%{?dist}

+ Release: 1%{?dist}

  License: Python

  

  
@@ -363,10 +363,6 @@ 

  # a nightmare because it's basically a binary file.

  Patch353: 00353-architecture-names-upstream-downstream.patch

  

- # 00357 # 4501d419207a7209831ae7e98b60c93df24d6519

- # bpo-42938: Replace snprintf with Python unicode formatting in ctypes param reprs. (GH-24247)

- Patch357: 00357-bpo-42938-replace-snprintf-with-python-unicode-formatting-in-ctypes-param-reprs-gh-24247.patch

- 

  # (New patches go here ^^^)

  #

  # When adding new patches to "python" and "python3" in Fedora, EL, etc.,
@@ -1747,6 +1743,9 @@ 

  # ======================================================

  

  %changelog

+ * Thu Feb 18 2021 Tomas Hrnciar <thrnciar@redhat.com> - 3.9.2~rc1-1

+ - Update to 3.9.2rc1

+ 

  * Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.1-5

  - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild

  

file modified
+2 -2
@@ -1,2 +1,2 @@ 

- SHA512 (Python-3.9.1.tar.xz) = b90029d6825751685983e9dcf0e0ec9e46f18e6c7d37b0dd7a245a94316f8c0090308ad7c2b2b49ed2514b0b909177231dd5bcad03031bf4624e37136fcf8019

- SHA512 (Python-3.9.1.tar.xz.asc) = 400259f499820e0499290402f095ee5454168907f539de705cad4f0e5586b1c67a0ac45b89bf099701be55146a5eed73dbc9e2cb15562fef34da2813ac82f342

+ SHA512 (Python-3.9.2rc1.tar.xz) = 39ba5424bbc8fe7f153c11201cdd63c8868f996cfd91ff278f53a49d4cc78433b68d871d3a01c0b0c78e790b154f82abb5beb4864919e080f0e0839768c7eca4

+ SHA512 (Python-3.9.2rc1.tar.xz.asc) = 593548ce5b4f3c5756061f08ba6788e46cc6c95237e394c50787a72ae9644202c6e3ae79fba8c66715ee0a872fe56996e5fc2158c42bedd917ee6dd4cb1e69b0

no initial comment

Build failed. More information on how to proceed and troubleshoot errors available at https://fedoraproject.org/wiki/Zuul-based-ci

The test suite fails in Zuul, test_imaplib and test_socket, both with:

self.assertIn(cm.exception.errno, expected_errnos)
AssertionError: 110 not found in [111, 101, 99, 113, 97]

Pull-Request has been merged by churchyard

3 years ago

This is "110 connection timed out". @vstinner should it be included?

Timeout errors are not expected and should not be ignored silently. I see that you merged the PR, so I consider that nothing else should be done. If the timeout error becomes more common, I can investigate why it fails on Koji (it doesn't fail on Python upstream buildbots).