forked from AuroraMiddleware/gtk
6a24e0c7c3
Every beginning is small... just check one constant for now.
11 lines
205 B
Python
Executable File
11 lines
205 B
Python
Executable File
#! /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'
|