diff options
| author | Yulong (Kevin) Liu <Yulong.Liu@windriver.com> | 2022-06-15 12:41:27 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-17 17:57:44 +0100 |
| commit | fb733514623bfb3df274feb043cc677868b55219 (patch) | |
| tree | 5e458ea952a83a9858c07b7e08cc54990c64a17c /meta/recipes-devtools/python/python3-pyasn1 | |
| parent | 01aaeb444f17a34a53a29dbdc3d8640b3ffdbf93 (diff) | |
| download | poky-fb733514623bfb3df274feb043cc677868b55219.tar.gz | |
python3-pyasn1: Eliminated ptest deprecation warnings
Eliminated the ptest deprecation warnings for the error:
DeprecationWarning: _int_ returned non-int (type SizedInteger).
The ability to return an instance of a strict subclass of int is deprecated,
and may be removed in a future version of Python.
return SizedInteger(value).setBitLength(len(value))
Patch from git upstream repo:
https://github.com/etingof/pyasn1/commit/db8f1a7930c6b5826357646746337dafc983f953
(From OE-Core rev: ac674d95820137306e7c71f4275d92cf4fedf39d)
Signed-off-by: Yulong (Kevin) Liu <yulong.liu@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pyasn1')
| -rw-r--r-- | meta/recipes-devtools/python/python3-pyasn1/0001-Fix-DeprecationWarning-__int__-returned-non-int-on-P.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pyasn1/0001-Fix-DeprecationWarning-__int__-returned-non-int-on-P.patch b/meta/recipes-devtools/python/python3-pyasn1/0001-Fix-DeprecationWarning-__int__-returned-non-int-on-P.patch new file mode 100644 index 0000000000..30ac9a6684 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pyasn1/0001-Fix-DeprecationWarning-__int__-returned-non-int-on-P.patch | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | From db8f1a7930c6b5826357646746337dafc983f953 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Ilya Etingof <etingof@gmail.com> | ||
| 3 | Date: Sat, 21 Mar 2020 19:05:03 +0100 | ||
| 4 | Subject: [PATCH] Fix `DeprecationWarning: __int__ returned non-int` on Py3 | ||
| 5 | |||
| 6 | In `BitString.__int__()` | ||
| 7 | Upstream-Status: Backport | ||
| 8 | Signed-off-by: Yulong Liu <yulong.liu@windriver.com> | ||
| 9 | --- | ||
| 10 | pyasn1/type/univ.py | 2 +- | ||
| 11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 12 | |||
| 13 | diff --git a/pyasn1/type/univ.py b/pyasn1/type/univ.py | ||
| 14 | index 10924c3..488241f 100644 | ||
| 15 | --- a/pyasn1/type/univ.py | ||
| 16 | +++ b/pyasn1/type/univ.py | ||
| 17 | @@ -551,7 +551,7 @@ class BitString(base.SimpleAsn1Type): | ||
| 18 | return self.clone(SizedInteger(self._value >> count).setBitLength(max(0, len(self._value) - count))) | ||
| 19 | |||
| 20 | def __int__(self): | ||
| 21 | - return self._value | ||
| 22 | + return int(self._value) | ||
| 23 | |||
| 24 | def __float__(self): | ||
| 25 | return float(self._value) | ||
| 26 | -- | ||
| 27 | 2.25.1 | ||
| 28 | |||
