File: python-gi-test

package info (click to toggle)
libadwaita-1 1.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,252 kB
  • sloc: ansic: 86,101; xml: 189; python: 60; sh: 30; makefile: 21; javascript: 9
file content (10 lines) | stat: -rwxr-xr-x 166 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python3
#
# Make sure gobject introspection works

import gi

gi.require_version('Adw', '1')
from gi.repository import Adw

assert 'ActionRow' in dir(Adw)