mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 14:31:10 +00:00
11 lines
205 B
Python
11 lines
205 B
Python
|
#! /usr/bin/env python3
|
||
|
|
||
|
import sys
|
||
|
import gi
|
||
|
|
||
|
gi.require_version('Gtk', '4.0')
|
||
|
|
||
|
from gi.repository import Gtk
|
||
|
|
||
|
assert isinstance(Gtk.INVALID_LIST_POSITION, int), 'Gtk.INVALID_LIST_POSITION is not an int'
|