Hi all,
I'm getting this error when I use loadUi():
Traceback (most recent call last):
File "./testui", line 26, in <module>
t = Test()
File "./testui", line 13, in __init__
self.ui = uic.loadUi("test-broken.ui", self)
File "/usr/lib/python3/dist-packages/PyQt5/uic/__init__.py", line 224, in loadUi
return DynamicUILoader(package).loadUi(uifile, baseinstance, resource_suffix)
File "/usr/lib/python3/dist-packages/PyQt5/uic/Loader/loader.py", line 72, in loadUi
return self.parse(filename, resource_suffix, basedir)
File "/usr/lib/python3/dist-packages/PyQt5/uic/uiparser.py", line 931, in parse
actor(elem)
File "/usr/lib/python3/dist-packages/PyQt5/uic/uiparser.py", line 856, in createConnections
bound_signal.connect(slot)
SystemError: error return without exception set
I've narrowed this down to occuring when I've added custom slots in
the ui designer. However, it doesn't always occur, and I can't see
any obvious reasons for failure.
I've attached the most minimal testcase I can make. The testui
program just loads one of the two attached .ui files. One works,
one fails. The only difference is one line which changes which
slot gets used. However, both slots are absolutely identical,
and I can't see any reason for the failure unless either of the
names is somehow "special".
The code from which the testcase was derived is here:
http://anonscm.debian.org/gitweb/?p=users/rleigh/ogcalc.git;a=tree;f=qt/python;h=0d60c1c99d0438096badb186a030f166202e1a98;hb=341b96685f3abe92e78fd7768fc5c5893ce5b5ee
(ogcalc-ui, ogcalc.ui, SpinBoxEntry.py). In this example both
the reset and calculate callbacks cause the failure; removing the
signal connection for both makes the UI load. But if I remove
widgets from the UI to get to the minimal example above, it
eventually will start working by the time I'm down to the
minimal example above.
Being relatively new to both Qt and PyQt, I'm unsure if this isn't
me doing something wrong, but I can't see anything obviously bad
here so I'm wondering if I'm tripping over some odd edge case in
how the signal autoconnection works. Either way, I'd be very
keen to understand what's going wrong here.
I'm using Python 3.3/Qt 5.1/PyQt 5.0 on Debian (unstable, amd64).
Thanks all,
Roger
--
.''`. Roger Leigh
: :' : Debian GNU/Linux http://people.debian.org/~rleigh/
`. `' Printing on GNU/Linux? http://gutenprint.sourceforge.net/
`- GPG Public Key: 0x25BFB848 Please GPG sign your mail.
-------------- next part --------------
#!/usr/bin/python3
from PyQt5 import uic
from PyQt5.QtCore import pyqtSlot
from PyQt5.QtGui import (QFont, QIcon)
from PyQt5.QtWidgets import (QApplication, QMainWindow)
class Test(QMainWindow):
def __init__(self):
super(Test, self).__init__()
# self.ui = uic.loadUi("test-ok.ui", self)
self.ui = uic.loadUi("test-broken.ui", self)
@pyqtSlot()
def calculate(self):
print("Calc")
@pyqtSlot()
def reset(self):
print("Reset")
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
t = Test()
t.show()
sys.exit(app.exec())
-------------- next part --------------
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ogcalc</class>
<widget class="QMainWindow" name="ogcalc">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>407</width>
<height>123</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="windowTitle">
<string>OG & ABV calculator</string>
</property>
<property name="windowIcon">
<iconset>
<normaloff>ogcalc.svg</normaloff>ogcalc.svg</iconset>
</property>
<widget class="QWidget" name="toplevel_layout">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<layout class="QVBoxLayout" name="vertical_layout">
<item>
<widget class="QPushButton" name="reset">
<property name="text">
<string>Reset</string>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections>
<connection>
<sender>reset</sender>
<signal>clicked()</signal>
<receiver>ogcalc</receiver>
<slot>calculate()</slot>
<hints>
<hint type="sourcelabel">
<x>203</x>
<y>102</y>
</hint>
<hint type="destinationlabel">
<x>203</x>
<y>61</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>calculate()</slot>
<slot>reset()</slot>
</slots>
</ui>
-------------- next part --------------
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ogcalc</class>
<widget class="QMainWindow" name="ogcalc">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>407</width>
<height>123</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="windowTitle">
<string>OG & ABV calculator</string>
</property>
<property name="windowIcon">
<iconset>
<normaloff>ogcalc.svg</normaloff>ogcalc.svg</iconset>
</property>
<widget class="QWidget" name="toplevel_layout">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<layout class="QVBoxLayout" name="vertical_layout">
<item>
<widget class="QPushButton" name="reset">
<property name="text">
<string>Reset</string>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections>
<connection>
<sender>reset</sender>
<signal>clicked()</signal>
<receiver>ogcalc</receiver>
<slot>reset()</slot>
<hints>
<hint type="sourcelabel">
<x>203</x>
<y>102</y>
</hint>
<hint type="destinationlabel">
<x>203</x>
<y>61</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>calculate()</slot>
<slot>reset()</slot>
</slots>
</ui>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://www.riverbankcomputing.com/pipermail/pyqt/attachments/20130730/d91a1791/attachment-0001.pgp>
More information about the PyQt
mailing list
‘She has never mentioned her father to me. Was he—well, the sort of man whom the County Club would not have blackballed?’ "We walked by the side of our teams or behind the wagons, we slept on the ground at night, we did our own cooking, we washed our knives by sticking them into the ground rapidly a few times, and we washed our plates with sand and wisps of grass. When we stopped, we arranged our wagons in a circle, and thus formed a 'corral,' or yard, where we drove our oxen to yoke them up. And the corral was often very useful as a fort, or camp, for defending ourselves against the Indians. Do you see that little hollow down there?" he asked, pointing to a depression in the ground a short distance to the right of the train. "Well, in that hollow our wagon-train was kept three days and nights by the Indians. Three days and nights they stayed around, and made several attacks. Two of our men were killed and three were wounded by their arrows, and others had narrow escapes. One arrow hit me on the throat, but I was saved by the knot of my neckerchief, and the point only tore the skin a little. Since that time I have always had a fondness for large neckties. I don't know how many of the Indians we killed, as they carried off their dead and wounded, to save them from being scalped. Next to getting the scalps of their enemies, the most important thing with the Indians is to save their own. We had several fights during our journey, but that one was the worst. Once a little party of us were surrounded in a small 'wallow,' and had a tough time to defend ourselves successfully. Luckily for us, the Indians had no fire-arms then, and their bows and arrows were no match for our rifles. Nowadays they are well armed, but there are[Pg 41] not so many of them, and they are not inclined to trouble the railway trains. They used to do a great deal of mischief in the old times, and many a poor fellow has been killed by them." As dusk came on nearly the whole population of Maastricht, with all their temporary guests, formed an endless procession and went to invoke God's mercy by the Virgin Mary's intercession. They went to Our Lady's Church, in which stands the miraculous statue of Sancta Maria Stella Maris. The procession filled all the principal streets and squares of the town. I took my stand at the corner of the Vrijthof, where all marched past me, men, women, and children, all praying aloud, with loud voices beseeching: "Our Lady, Star of the Sea, pray for us ... pray for us ... pray for us ...!" It had not occurred to her for some hours after Mrs. Campbell had told her of Landor's death that she was free now to give herself to Cairness. She had gasped, indeed, when she did remember it, and had put the thought away, angrily and self-reproachfully. But it returned now, and she felt that she might cling to it. She had been grateful, and she had been faithful, too.[Pg 286] She remembered only that Landor had been kind to her, and forgot that for the last two years she had borne with much harsh coldness, and with a sort of contempt which she felt in her unanalyzing mind to have been entirely unmerited. Gradually she raised herself until she sat quite erect by the side of the mound, the old exultation of her half-wild girlhood shining in her face as she planned the future, which only a few minutes before had seemed so hopeless. After he had gloated over Sergeant Ramsey, Shorty got his men into the road ready to start. Si placed himself in front of the squad and deliberately loaded his musket in their sight. Shorty took his place in the rear, and gave out: The groups about each gun thinned out, as the shrieking fragments of shell mowed down man after man, but the rapidity of the fire did not slacken in the least. One of the Lieutenants turned and motioned with his saber to the riders seated on their horses in the line of limbers under the cover of the slope. One rider sprang from each team and ran up to take the place of men who had fallen. "As long as there's men and women in the world, the men 'ull be top and the women bottom." Then, in the house, the little girls were useful. Mrs. Backfield was not so energetic as she used to be. She had never been a robust woman, and though her husband's care had kept her well and strong, her frame was not equal to Reuben's demands; after fourteen years' hard labour, she suffered from rheumatism, which though seldom acute, was inclined to make her stiff and slow. It was here that Caro and Tilly came in, and Reuben began to appreciate his girls. After all, girls were needed in a house—and as for young men and marriage, their father could easily see that such follies did not spoil their usefulness or take them from him. Caro and Tilly helped their grandmother in all sorts of ways—they dusted, they watched pots, they shelled peas and peeled potatoes, they darned house-linen, they could even make a bed between them. HoME一级毛片视频免费公开
ENTER NUMBET 0018www.ppdaikuan.com.cn www.yy586.com.cn www.tianbin168.com.cn www.dreamvr.com.cn zjzmjx.com.cn bngban.org.cn dwcem.com.cn www.syxxjs.com.cn www.kveu.com.cn www.tbpq.com.cn