I'm not sure what exactly they are really talking about at
https://gitlab.gnome.org/GNOME/pygobject/issues/198.
My FR concerns 3.26.1-2ubuntu1 and at gitlab it is stated "I think it
used to work in 3.26." which
clearly is not the case.
I took a look into the source and in pygi-value.c I found this:
case G_TYPE_INT:
{
glong val = PYGLIB_PyLong_AsLong(obj);
if (val == -1 && PyErr_Occurred ())
return -1;
if (val > G_MAXINT || val < G_MININT) {
PyErr_SetString(PyExc_OverflowError, "out of range for int
property");
return -1;
}
g_value_set_int(value, (gint)val);
break;
}
and a lot of comments like this:
#if PY_VERSION_HEX < 0x03000000
[snip]
#endif
To me this means that somebody is/was aware of the fact that some more
work has to be done for
making this stuff compatible to Python 3.
On 09.03.20 14:48, Sebastien Bacher wrote:
> Thank you for your bug report, that seems similar to
> https://gitlab.gnome.org/GNOME/pygobject/issues/198
>
> ** Bug watch added: gitlab.gnome.org/GNOME/pygobject/issues #198
> https://gitlab.gnome.org/GNOME/pygobject/issues/198
>
> ** Changed in: pygobject (Ubuntu)
> Importance: Undecided => Low
>
--
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pygobject in Ubuntu.
https://bugs.launchpad.net/bugs/1866625
Title:
OverflowError: With Python 3 Gtk.ListStore only accepts 32 Bit
Integers.
Status in pygobject package in Ubuntu:
New
Bug description:
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
This works in Python 2:
mystore = Gtk.ListStore(long)
mystore.insert_with_valuesv(-1, [1], [long(1330400507426)])
This does not work in Python 3:
mystore = Gtk.ListStore(int)
mystore.insert_with_valuesv(-1, [1], [int(1330400507426)])
OverflowError: Item 0: out of range for int property
----
lsb_release -rd
Description: Ubuntu 18.04.4 LTS
Release: 18.04
apt-cache policy python3-gi
python3-gi:
Installed: 3.26.1-2ubuntu1
Candidate: 3.26.1-2ubuntu1
Version table:
*** 3.26.1-2ubuntu1 500
500 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64
Packages
100 /var/lib/dpkg/status
3.26.1-2 500
500 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages
python3 -V
Python 3.6.9
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1866625/+subscriptions
--
Mailing list: https://launchpad.net/~desktop-packages
Post to : [email protected]
Unsubscribe : https://launchpad.net/~desktop-packages
More help : https://help.launchpad.net/ListHelp