update code to python3 (#10903)

* update code to python3

* add changelog frag

* rollback adjustment for plugins/lookup/lmdb_kv.py

* accept PR suggestion for plugins/module_utils/utm_utils.py

* accept PR suggestion for plugins/module_utils/vexata.py

* Apply suggestions from code review

* Update changelogs/fragments/10903-2to3.yml

* Update changelogs/fragments/10903-2to3.yml
This commit is contained in:
Alexei Znamensky
2025-10-12 22:05:57 +13:00
committed by GitHub
parent 056633efaa
commit 07cfd6c4b4
8 changed files with 18 additions and 24 deletions

View File

@@ -42,10 +42,7 @@ options:
type: float
"""
try:
import cPickle as pickle
except ImportError:
import pickle
import pickle
from ansible.plugins.cache import BaseFileCacheModule