/usr/share/pyshared/guidata/tests/inheritance.py is in python-guidata 1.6.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | # -*- coding: utf-8 -*-
#
# Copyright © 2009-2010 CEA
# Pierre Raybaut
# Licensed under the terms of the CECILL License
# (see guidata/__init__.py for details)
"""
DataSet objects inheritance test
From time to time, it may be useful to derive a DataSet from another. The main
application is to extend a parameter set with additionnal parameters.
"""
from __future__ import print_function
SHOW = True # Show test in GUI-based test launcher
from guidata.tests.all_features import TestParameters
from guidata.dataset.datatypes import BeginGroup, EndGroup
from guidata.dataset.dataitems import FloatItem, BoolItem
class TestParameters2(TestParameters):
bool1 = BoolItem("Boolean option (bis)")
g1 = BeginGroup("Group")
a = FloatItem("Level 1")
gg1 = BeginGroup("sub-group")
b = FloatItem("Level 2a")
c = FloatItem("Level 2b")
_gg1 = EndGroup("sub-group end")
_g1 = EndGroup("sub-group")
if __name__ == '__main__':
# Create QApplication
import guidata
_app = guidata.qapplication()
e = TestParameters2()
e.edit()
print(e)
|