diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-09-24 09:53:24 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-09-24 11:28:52 +0200 |
commit | 4a899a5f8a72ea29a6919316afe3627de9f33e95 (patch) | |
tree | 420b842efb90ac4e7e6d30cfca34935a173968e0 /solenv/gdb/boost | |
parent | d98ac4d2c584313c1e51630c6fbab8f8a092012c (diff) |
Fix Python deprecation warnings
I noticed these "DeprecationWarning: Using or importing the ABCs from
'collections' instead of from 'collections.abc' is deprecated since Python 3.3,
and in 3.9 it will stop working" now when running tests with
CPPUNITTRACE='gdb --args' on Fedora 32.
Change-Id: If263dacb9df5c1fffd2be2418e13e69b96070c77
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103294
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'solenv/gdb/boost')
-rw-r--r-- | solenv/gdb/boost/util/printing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gdb/boost/util/printing.py b/solenv/gdb/boost/util/printing.py index ca8b6c28eeca..85a91c9340a4 100644 --- a/solenv/gdb/boost/util/printing.py +++ b/solenv/gdb/boost/util/printing.py @@ -19,7 +19,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. -from collections import Mapping +from collections.abc import Mapping import gdb import re import six |