All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6
@ 2020-04-14 22:32 Barnabas Viragh
  2020-04-15  6:46 ` [Bug 1872847] " Laurent Vivier
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Barnabas Viragh @ 2020-04-14 22:32 UTC (permalink / raw)
  To: qemu-devel

Public bug reported:

Running on Gentoo Linux in a chroot environment:
# python3 -c 'import selectors; selectors.DefaultSelector()'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python3.7/selectors.py", line 349, in __init__
    self._selector = self._selector_cls()
OSError: [Errno 22] Invalid argument

However, on real hardware, with the same binaries there is no exception.

This impacts whole python3 based Gentoo ebuild system (package
management), and renders linux user mode alpha emulation in chroot
environment building useless, more or less.

The used systems:
# qemu-alpha --version
qemu-alpha version 4.2.0
Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
# uname -a
Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
(chroot)# python3 --version
Python 3.7.7

** Affects: qemu
     Importance: Undecided
         Status: New


** Tags: alpha linux-user python

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  New

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
@ 2020-04-15  6:46 ` Laurent Vivier
  2020-04-15  8:56 ` Barnabas Viragh
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Laurent Vivier @ 2020-04-15  6:46 UTC (permalink / raw)
  To: qemu-devel

Hi,

do you know if it works with previous version of qemu?
Do you know if it works with qemu built from git repo?

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  New

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
  2020-04-15  6:46 ` [Bug 1872847] " Laurent Vivier
@ 2020-04-15  8:56 ` Barnabas Viragh
  2020-04-15  9:48 ` Barnabas Viragh
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Barnabas Viragh @ 2020-04-15  8:56 UTC (permalink / raw)
  To: qemu-devel

I know, that it is broken since I use for alpha emulation, since
2017-2018. However it worked with python2.7 before. But python 2.7
reached end of life support, and HAVE TO use 3.6 or 3.7, so this one
became a pain now. I will try the git version, but have no high hopes...

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  New

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
  2020-04-15  6:46 ` [Bug 1872847] " Laurent Vivier
  2020-04-15  8:56 ` Barnabas Viragh
@ 2020-04-15  9:48 ` Barnabas Viragh
  2020-04-15 12:35 ` Barnabas Viragh
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Barnabas Viragh @ 2020-04-15  9:48 UTC (permalink / raw)
  To: qemu-devel

Tried git version qemu-alpha as well, and I can confirm it gives the
same error.

For additional information, neither of these has this bug (nor in 4.2.0, neither in git):
- qemu-mips64
- qemu-arm
- qemu-aarch64

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  New

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
                   ` (2 preceding siblings ...)
  2020-04-15  9:48 ` Barnabas Viragh
@ 2020-04-15 12:35 ` Barnabas Viragh
  2020-04-15 22:39 ` Sergei Trofimovich
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Barnabas Viragh @ 2020-04-15 12:35 UTC (permalink / raw)
  To: qemu-devel

Related Gentoo bug: https://bugs.gentoo.org/717548

** Also affects: gentoo
   Importance: Undecided
       Status: New

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  New
Status in Gentoo Linux:
  New

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
                   ` (3 preceding siblings ...)
  2020-04-15 12:35 ` Barnabas Viragh
@ 2020-04-15 22:39 ` Sergei Trofimovich
  2020-04-16  1:23 ` Barnabas Viragh
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Sergei Trofimovich @ 2020-04-15 22:39 UTC (permalink / raw)
  To: qemu-devel

Proposed possible fix as https://lists.nongnu.org/archive/html/qemu-
devel/2020-04/msg02545.html

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  New
Status in Gentoo Linux:
  New

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
                   ` (4 preceding siblings ...)
  2020-04-15 22:39 ` Sergei Trofimovich
@ 2020-04-16  1:23 ` Barnabas Viragh
  2020-04-18  8:30 ` Barnabas Viragh
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Barnabas Viragh @ 2020-04-16  1:23 UTC (permalink / raw)
  To: qemu-devel

Tested the proposed patch from Sergei Trofimovich, and it solves the
problem, while doesn't break the other archs I use (mips64,arm,aarch64
also tested).

Thank you!

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  New
Status in Gentoo Linux:
  New

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
                   ` (5 preceding siblings ...)
  2020-04-16  1:23 ` Barnabas Viragh
@ 2020-04-18  8:30 ` Barnabas Viragh
  2020-04-18  8:41 ` Barnabas Viragh
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Barnabas Viragh @ 2020-04-18  8:30 UTC (permalink / raw)
  To: qemu-devel

** Changed in: gentoo
       Status: New => Fix Committed

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  New
Status in Gentoo Linux:
  Fix Released

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
                   ` (6 preceding siblings ...)
  2020-04-18  8:30 ` Barnabas Viragh
@ 2020-04-18  8:41 ` Barnabas Viragh
  2020-04-20 20:09 ` Laurent Vivier
  2020-04-30 13:57 ` Laurent Vivier
  9 siblings, 0 replies; 11+ messages in thread
From: Barnabas Viragh @ 2020-04-18  8:41 UTC (permalink / raw)
  To: qemu-devel

** Changed in: gentoo
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  New
Status in Gentoo Linux:
  Fix Released

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
                   ` (7 preceding siblings ...)
  2020-04-18  8:41 ` Barnabas Viragh
@ 2020-04-20 20:09 ` Laurent Vivier
  2020-04-30 13:57 ` Laurent Vivier
  9 siblings, 0 replies; 11+ messages in thread
From: Laurent Vivier @ 2020-04-20 20:09 UTC (permalink / raw)
  To: qemu-devel

386d38656889  ("linux-user/syscall.c: add target-to-host mapping for
epoll_create1()")


** Changed in: qemu
       Status: New => Fix Committed

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  Fix Committed
Status in Gentoo Linux:
  Fix Released

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug 1872847] Re: qemu-alpha linux-user breaks python3.6
  2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
                   ` (8 preceding siblings ...)
  2020-04-20 20:09 ` Laurent Vivier
@ 2020-04-30 13:57 ` Laurent Vivier
  9 siblings, 0 replies; 11+ messages in thread
From: Laurent Vivier @ 2020-04-30 13:57 UTC (permalink / raw)
  To: qemu-devel

** Changed in: qemu
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1872847

Title:
  qemu-alpha linux-user breaks python3.6

Status in QEMU:
  Fix Released
Status in Gentoo Linux:
  Fix Released

Bug description:
  Running on Gentoo Linux in a chroot environment:
  # python3 -c 'import selectors; selectors.DefaultSelector()'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/usr/lib/python3.7/selectors.py", line 349, in __init__
      self._selector = self._selector_cls()
  OSError: [Errno 22] Invalid argument

  However, on real hardware, with the same binaries there is no
  exception.

  This impacts whole python3 based Gentoo ebuild system (package
  management), and renders linux user mode alpha emulation in chroot
  environment building useless, more or less.

  The used systems:
  # qemu-alpha --version
  qemu-alpha version 4.2.0
  Copyright (c) 2003-2019 Fabrice Bellard and the QEMU Project developers
  # uname -a
  Linux blackbird 5.4.28-gentoo-blackbird-06 #2 SMP Sat Apr 4 13:13:10 CEST 2020 x86_64 AMD Ryzen 5 3600 6-Core Processor AuthenticAMD GNU/Linux
  (chroot)# python3 --version
  Python 3.7.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1872847/+subscriptions


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2020-04-30 14:16 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-14 22:32 [Bug 1872847] [NEW] qemu-alpha linux-user breaks python3.6 Barnabas Viragh
2020-04-15  6:46 ` [Bug 1872847] " Laurent Vivier
2020-04-15  8:56 ` Barnabas Viragh
2020-04-15  9:48 ` Barnabas Viragh
2020-04-15 12:35 ` Barnabas Viragh
2020-04-15 22:39 ` Sergei Trofimovich
2020-04-16  1:23 ` Barnabas Viragh
2020-04-18  8:30 ` Barnabas Viragh
2020-04-18  8:41 ` Barnabas Viragh
2020-04-20 20:09 ` Laurent Vivier
2020-04-30 13:57 ` Laurent Vivier

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.