klayout/testdata/python
Matthias Koefferlein 1f60e7729e Qt signals can be bound to functions with less args in Python
With this change it is possible to bind signals to functions
accepting less arguments. For example:

    def triggered():
      ...

    b = pya.QPushButton()
    b.clicked(triggered)
    b.emit_clicked(True)

wasn't working before since triggered() gets one parameter
(checked) and the call fails. Now, additional parameters are
ignored.
2017-02-24 23:48:47 +01:00
..
basic.py Initialized repository with current sources. 2017-02-12 13:21:08 +01:00
dbLayoutTest.py Initialized repository with current sources. 2017-02-12 13:21:08 +01:00
dbPCells.py Initialized repository with current sources. 2017-02-12 13:21:08 +01:00
dbRegionTest.py Initialized repository with current sources. 2017-02-12 13:21:08 +01:00
qtbinding.py Qt signals can be bound to functions with less args in Python 2017-02-24 23:48:47 +01:00
tlTest.py Initialized repository with current sources. 2017-02-12 13:21:08 +01:00