From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH 04/10] Run 2to3
Date: Fri, 07 May 2021 12:21:59 +0100 [thread overview]
Message-ID: <89B08D1B-6B12-4B3E-BB5F-A53EDB740CF4@ipfire.org> (raw)
In-Reply-To: <20210507111654.2397-5-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 8183 bytes --]
Hello,
Obviously there should have been more patches after this one.
Unfortunately the rate-limiting feature of our mail server fucked me over. Please find the rest on here:
https://git.ipfire.org/?p=oddments/fireinfo.git;a=shortlog;h=refs/heads/python3
-Michael
> On 7 May 2021, at 12:16, Michael Tremer <michael.tremer(a)ipfire.org> wrote:
>
> This is the result of running the automatic conversion tool and I have
> not tested this, yet. There might be some bugs being introduced by this.
>
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> src/fireinfo/cpu.py | 20 ++++++++++----------
> src/fireinfo/hypervisor.py | 6 +++---
> src/fireinfo/network.py | 8 ++++----
> src/fireinfo/system.py | 38 ++++++++++++++++++--------------------
> src/sendprofile | 34 +++++++++++++++++-----------------
> 5 files changed, 52 insertions(+), 54 deletions(-)
>
> diff --git a/src/fireinfo/cpu.py b/src/fireinfo/cpu.py
> index dc76caf..e433a04 100644
> --- a/src/fireinfo/cpu.py
> +++ b/src/fireinfo/cpu.py
> @@ -21,7 +21,7 @@
>
> import os
>
> -import system
> +from . import system
>
> PROC_CPUINFO = "/proc/cpuinfo"
>
> @@ -188,12 +188,12 @@ class CPU(object):
> if __name__ == "__main__":
> c = CPU()
>
> - print "Vendor:", c.vendor
> - print "Model:", c.model
> - print "Stepping:", c.stepping
> - print "Flags:", c.flags
> - print "Bogomips:", c.bogomips
> - print "Speed:", c.speed
> - print "Family:", c.family
> - print "Count:", c.count
> - print "Model string:", c.model_string
> + print("Vendor:", c.vendor)
> + print("Model:", c.model)
> + print("Stepping:", c.stepping)
> + print("Flags:", c.flags)
> + print("Bogomips:", c.bogomips)
> + print("Speed:", c.speed)
> + print("Family:", c.family)
> + print("Count:", c.count)
> + print("Model string:", c.model_string)
> diff --git a/src/fireinfo/hypervisor.py b/src/fireinfo/hypervisor.py
> index 0c07cfa..e76aad5 100644
> --- a/src/fireinfo/hypervisor.py
> +++ b/src/fireinfo/hypervisor.py
> @@ -20,7 +20,7 @@
> ###############################################################################
>
> import _fireinfo
> -import system
> +from . import system
>
> class Hypervisor(object):
> def __init__(self):
> @@ -115,5 +115,5 @@ class Hypervisor(object):
> if __name__ == "__main__":
> h = Hypervisor()
>
> - print "Vendor:", h.vendor
> - print "Virtual:", h.virtual
> + print("Vendor:", h.vendor)
> + print("Virtual:", h.virtual)
> diff --git a/src/fireinfo/network.py b/src/fireinfo/network.py
> index 063e9ec..de58be3 100644
> --- a/src/fireinfo/network.py
> +++ b/src/fireinfo/network.py
> @@ -47,7 +47,7 @@ class Network(object):
> if __name__ == "__main__":
> n = Network()
>
> - print "has_green", n.has_green()
> - print "has_red", n.has_red()
> - print "has_blue", n.has_blue()
> - print "has_orange", n.has_orange()
> + print("has_green", n.has_green())
> + print("has_red", n.has_red())
> + print("has_blue", n.has_blue())
> + print("has_orange", n.has_orange())
> diff --git a/src/fireinfo/system.py b/src/fireinfo/system.py
> index 73c3882..cfeb171 100644
> --- a/src/fireinfo/system.py
> +++ b/src/fireinfo/system.py
> @@ -26,11 +26,11 @@ import string
>
> import _fireinfo
>
> -import bios
> -import cpu
> -import device
> -import hypervisor
> -import network
> +from . import bios
> +from . import cpu
> +from . import device
> +from . import hypervisor
> +from . import network
>
> PROFILE_VERSION = 0
>
> @@ -84,9 +84,7 @@ def read_from_file(filename):
> except IOError:
> pass
>
> -class System(object):
> - __metaclass__ = Singleton
> -
> +class System(object, metaclass=Singleton):
> def __init__(self):
> self.bios = bios.BIOS(self)
>
> @@ -338,7 +336,7 @@ class System(object):
> if s is None:
> return
>
> - return filter(lambda x: x in string.printable, s)
> + return [x for x in s if x in string.printable]
>
> @property
> def vendor(self):
> @@ -373,7 +371,7 @@ class System(object):
> ret = read_from_file("/proc/device-tree/model")
> if ret:
> # replace the NULL byte with which the DT string ends
> - ret = ret.replace(u"\u0000", "")
> + ret = ret.replace("\u0000", "")
>
> # Fall back to read /proc/cpuinfo
> if not ret:
> @@ -485,13 +483,13 @@ class System(object):
>
> if __name__ == "__main__":
> s=System()
> - print s.arch
> - print s.language
> - print s.release
> - print s.bios_vendor
> - print s.memory
> - print s.kernel
> - print s.root_disk
> - print s.root_size
> - print "------------\n", s.devices, "\n------------\n"
> - print json.dumps(s.profile(), sort_keys=True, indent=4)
> + print(s.arch)
> + print(s.language)
> + print(s.release)
> + print(s.bios_vendor)
> + print(s.memory)
> + print(s.kernel)
> + print(s.root_disk)
> + print(s.root_size)
> + print("------------\n", s.devices, "\n------------\n")
> + print(json.dumps(s.profile(), sort_keys=True, indent=4))
> diff --git a/src/sendprofile b/src/sendprofile
> index 3ce68b9..5fc6c86 100755
> --- a/src/sendprofile
> +++ b/src/sendprofile
> @@ -24,8 +24,8 @@ import logging
> import logging.handlers
> import os
> import sys
> -import urllib
> -import urllib2
> +import urllib.request, urllib.parse, urllib.error
> +import urllib.request, urllib.error, urllib.parse
>
> import fireinfo
>
> @@ -67,8 +67,8 @@ def send_profile(profile):
> for line in json.dumps(profile, sort_keys=True, indent=4).splitlines():
> logging.debug(line)
>
> - request = urllib2.Request(PROFILE_URL % profile,
> - data = urllib.urlencode({"profile" : json.dumps(profile)}),
> + request = urllib.request.Request(PROFILE_URL % profile,
> + data = urllib.parse.urlencode({"profile" : json.dumps(profile)}),
> )
> request.add_header("User-Agent", "fireinfo/%s" % fireinfo.__version__)
>
> @@ -80,22 +80,22 @@ def send_profile(profile):
> if proxy["user"] and proxy["pass"]:
> prx_auth_string = "http://%s:%s@%s/" % (proxy["user"], proxy["pass"], proxy["host"])
>
> - proxy_handler = urllib2.ProxyHandler({'http': prx_auth_string, 'https': prx_auth_string})
> - auth = urllib2.HTTPBasicAuthHandler()
> - opener = urllib2.build_opener(proxy_handler, auth, urllib2.HTTPHandler)
> - urllib2.install_opener(opener)
> + proxy_handler = urllib.request.ProxyHandler({'http': prx_auth_string, 'https': prx_auth_string})
> + auth = urllib.request.HTTPBasicAuthHandler()
> + opener = urllib.request.build_opener(proxy_handler, auth, urllib.request.HTTPHandler)
> + urllib.request.install_opener(opener)
> else:
> request.set_proxy(proxy["host"], "http")
> request.set_proxy(proxy["host"], "https")
>
> try:
> - urllib2.urlopen(request, timeout=60)
> - except (urllib2.HTTPError, urllib2.URLError), e:
> + urllib.request.urlopen(request, timeout=60)
> + except (urllib.error.HTTPError, urllib.error.URLError) as e:
> reason = "Unknown reason"
>
> - if isinstance(e, urllib2.HTTPError):
> + if isinstance(e, urllib.error.HTTPError):
> reason = "%s" % e
> - elif isinstance(e, urllib2.URLError):
> + elif isinstance(e, urllib.error.URLError):
> reason = e.reason
>
> logging.error("Profile was not sent propertly: %s" % reason)
> @@ -114,19 +114,19 @@ def main():
> # it contains no information and may confuse people.
> del profile["private_id"]
>
> - print json.dumps(profile, sort_keys=True, indent=4)
> + print(json.dumps(profile, sort_keys=True, indent=4))
> return 0
>
> if "--secret-id" in sys.argv:
> - print system.secret_id
> + print(system.secret_id)
> return 0
>
> if "--hardware-string" in sys.argv:
> - print system._unique_id
> + print(system._unique_id)
> return 0
>
> if "--public-id" in sys.argv:
> - print system.public_id
> + print(system.public_id)
> return 0
>
> if not os.path.exists(ENABLED_FILE):
> @@ -134,7 +134,7 @@ def main():
>
> try:
> send_profile(profile)
> - except urllib2.URLError:
> + except urllib.error.URLError:
> return 1
>
> return 0
> --
> 2.20.1
>
next prev parent reply other threads:[~2021-05-07 11:21 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-05 14:27 Dropping Python 2 Michael Tremer
2021-05-05 16:49 ` Adolf Belka
2021-05-05 17:12 ` Adolf Belka
2021-05-05 21:46 ` Adolf Belka
2021-05-05 22:30 ` Michael Tremer
2021-05-06 19:40 ` Dropping Python 2 - question about boost Adolf Belka
2021-05-07 11:00 ` Michael Tremer
2021-05-07 11:16 ` Migrating fireinfo to Python 3 Michael Tremer
2021-05-07 11:16 ` [PATCH 01/10] configure: Link against " Michael Tremer
2021-05-07 11:16 ` [PATCH 02/10] _fireinfo: Migrate to " Michael Tremer
2021-05-07 11:16 ` [PATCH 03/10] _fireinfo: Refactor some code Michael Tremer
2021-05-07 11:16 ` [PATCH 04/10] Run 2to3 Michael Tremer
2021-05-07 11:21 ` Michael Tremer [this message]
2021-05-14 12:10 ` Migrating fireinfo to Python 3 Adolf Belka
2021-05-14 12:13 ` Michael Tremer
2021-05-17 13:59 ` Adolf Belka
2021-05-18 10:29 ` Michael Tremer
2021-05-11 10:37 ` Dropping Python 2 (Problem with ipaddr) Adolf Belka
2021-05-11 10:40 ` Michael Tremer
2021-05-15 11:51 ` Adolf Belka
2021-05-11 12:18 ` Dropping Python 2 (questions about python modules that are in python3 and python2 versions) Adolf Belka
2021-05-12 18:34 ` Jonatan Schlag
2021-05-13 17:36 ` Adolf Belka
2021-05-11 13:24 ` Dropping Python 2 (problems with libxml2 and libxslt) Adolf Belka
2021-05-11 13:25 ` Michael Tremer
2021-05-11 13:31 ` Adolf Belka
2021-05-12 11:07 ` Dropping Python 2 (python-distutils & python-distutils-extra) Adolf Belka
2021-05-12 17:11 ` Michael Tremer
2021-05-12 12:31 ` Dropping Python 2 (python-mechanize + knock on effects) Adolf Belka
2021-05-14 19:28 ` Dropping Python 2 (python-m2crypto) Adolf Belka
2021-05-15 21:03 ` Adolf Belka
2021-05-16 14:16 ` Adolf Belka
2021-05-20 10:15 ` Michael Tremer
2021-05-20 10:30 ` Adolf Belka
2021-05-20 11:21 ` Michael Tremer
2021-05-22 12:25 ` Adolf Belka
2021-05-25 10:03 ` Michael Tremer
2021-05-29 14:31 ` Jonatan Schlag
2021-05-29 16:19 ` Adolf Belka
2021-05-15 8:28 ` Dropping Python 2 (python-optional-src) Adolf Belka
2021-05-15 8:41 ` Adolf Belka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=89B08D1B-6B12-4B3E-BB5F-A53EDB740CF4@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox