On Samstag, 13. September 2008, Albert Zeyer wrote:
> I almost expected that.
>> The following is written there:
>> lo0 (FE80:0:0:0:0:0:0:1, 127.0.0.1, 0:0:0:0:0:0:1)
Is that address (FE80:0:0:0:0:0:0:1) assigned to hostAddress in the Debug
server init method?
>> Am 13.09.2008 um 16:24 schrieb Detlev Offenbach:
> > Hi,
> >
> > are you using IPv6? Please let me know, what is displayed on the
> > General
> > debugger settings page for lo0. hostAddress has a default value
> > of "127.0.0.1". In the configuration dialog on the a.m page, the
> > first entry
> > after '(' is taken as the hostAddress.
> >
> > Regards,
> > Detlev
> >
> > On Samstag, 13. September 2008, Albert Zeyer wrote:
> >> Hi,
> >>
> >> I figured out the problem:
> >>
> >> In DebugServer.__init__(), the self.listen(hostAddress) fails
> >> (returns
> >> false). Also self.isListening() returns false. If I replace it with
> >> just self.listen(), it works. hostAddress.toString() returns
> >> PyQt4.QtCore.QString(u'FE80:0:0:0:0:0:0:1'). I also checked
> >> self.errorString() after it failed and it returns
> >> PyQt4.QtCore.QString(u'The address is not available'). It seems that
> >> hostAddress is somehow wrong. I checked the preferences of Eric and
> >> under General debugger settings, Network interface, "Only selected
> >> interface" is activated there and the lo0-interface is selected (that
> >> it the loopback-device under MacOSX). When I just switch to "All
> >> network interfaces" there, it also works. It seems that Eric takes
> >> somehow the wrong hostAddress out of it.
> >>
> >> For now, it is not that important to bind Eric only on the loopback-
> >> device, I am mot of the time in a secure network anyway. But do you
> >> have idea how to fix that in future?
> >>
> >> Regards,
> >> Albert
> >>
> >> Am 13.09.2008 um 15:43 schrieb Detlev Offenbach:
> >>> Hi,
> >>>
> >>> I don't have any Mac OS X around here, so eric4 is untested (at
> >>> least by me)
> >>> on that platform. However, I will assist you in debugging the
> >>> problem.
> >>>
> >>> 1) Please check in the debug client, which address and port it is
> >>> given by the
> >>> debug server. Insert a print statement in the main() method and
> >>> print
> >>> sys.argv.
> >>>
> >>> 2) You may change the debug server to passive mode using the
> >>> configuration
> >>> dialog and connect the client manually tp port 42424 (the default).
> >>>
> >>> 3) If your system is using only IPv6, the call in line 960 may fail
> >>> because
> >>> DebugAddress is assigned the localhost IP 127.0.0.1 (IPv4). It is
> >>> defined on
> >>> line 11 in DebugProtocol.py. If you're using IPv6, try changing it
> >>> to "::1".
> >>>
> >>> Regards,
> >>> Detlev
> >>>
> >>> On Samstag, 13. September 2008, Albert Zeyer wrote:
> >>>> Hi,
> >>>>
> >>>> I am new to Eric but I like the IDE as far as I have explored it. I
> >>>> though have some problems.
> >>>>
> >>>> My environment: Eric 4.2.1 (r2426) on MacOSX with Python 2.5.1.
> >>>>
> >>>> The problem: The debugger stopped working. (I think it has worked
> >>>> at
> >>>> the very beginning, at least I cannot remember that I have seen the
> >>>> error message there.) The first thing after I start the IDE is the
> >>>> following message in the Log-viewer:
> >>>>
> >>>> Traceback (most recent call last):
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClient.py", line 38, in <module>
> >>>> debugClient.main()
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClientBase.py", line 1858, in main
> >>>> self.connectDebugger(port, remoteAddress, redirect)
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClientBase.py", line 960, in connectDebugger
> >>>> sock.connect((DebugAddress,port))
> >>>> File "<string>", line 1, in connect
> >>>> socket.error: (49, "Can't assign requested address")
> >>>>
> >>>> I also get the same message in the Shell:
> >>>>
> >>>> StdErr: Traceback (most recent call last):
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClient.py", line 38, in <module>
> >>>> debugClient.main()
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClientBase.py", line 1858, in main
> >>>> self.connectDebugger(port, remoteAddress, redirect)
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClientBase.py", line 960, in connectDebugger
> >>>> sock.connect((DebugAddress,port))
> >>>> File "<string>", line 1, in connect
> >>>> socket.error: (49, "Can't assign requested address")
> >>>>
> >>>> This comes right after the start. But also when I try to debug any
> >>>> script, I get this message again and the debugger also seems not to
> >>>> work.
> >>>>
> >>>> I browsed a bit through the code of Eric4 to understand the
> >>>> debugging
> >>>> system. It seems that the IDE is starting a debug-server (the
> >>>> DebugServer class) which is built into the IDE and then it starts
> >>>> an
> >>>> external Python tool, the DebugClient, which connects over a TCP
> >>>> port
> >>>> to the DebugServer. The DebugServer provides all debugging
> >>>> functions
> >>>> and the DebugClient controls that.
> >>>>
> >>>> I wondered now a bit about the message from DebugClient. "Can't
> >>>> assign
> >>>> requested address" normally only appears if you used a invalid port
> >>>> number, like 0. On all other ports, it should give the message
> >>>> "Connection refused". I also tried that myself:
> >>>>
> >>>> Macintosh:~ az$ python /Library/Python/2.5/site-packages/eric4/
> >>>> DebugClients/Python/DebugClient.py 1
> >>>> Traceback (most recent call last):
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClient.py", line 38, in <module>
> >>>> debugClient.main()
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClientBase.py", line 1858, in main
> >>>> self.connectDebugger(port, remoteAddress, redirect)
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClientBase.py", line 960, in connectDebugger
> >>>> sock.connect((DebugAddress,port))
> >>>> File "<string>", line 1, in connect
> >>>> socket.error: (61, 'Connection refused')
> >>>>
> >>>> And:
> >>>>
> >>>> Macintosh:~ az$ python /Library/Python/2.5/site-packages/eric4/
> >>>> DebugClients/Python/DebugClient.py 0
> >>>> Traceback (most recent call last):
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClient.py", line 38, in <module>
> >>>> debugClient.main()
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClientBase.py", line 1858, in main
> >>>> self.connectDebugger(port, remoteAddress, redirect)
> >>>> File "/Library/Python/2.5/site-packages/eric4/DebugClients/Python/
> >>>> DebugClientBase.py", line 960, in connectDebugger
> >>>> sock.connect((DebugAddress,port))
> >>>> File "<string>", line 1, in connect
> >>>> socket.error: (49, "Can't assign requested address")
> >>>>
> >>>> Then, to go further, I tried to figure out on which port the server
> >>>> was listening. I browsed through the code and it seems that the
> >>>> server
> >>>> just uses a random port (it does not specify that). I thought I
> >>>> perhaps try out to connect to that port manually with the
> >>>> DebugClient.
> >>>> But it seems that the server was not correctly started, because
> >>>> Python
> >>>> has not opened any port:
> >>>>
> >>>> Macintosh:~ az$ lsof -i -P | grep -i python
> >>>> Python 24119 az 8u IPv6 0x3e524bc 0t0 TCP *:*
> >>>> (CLOSED)
> >>>>
> >>>> Any suggestions?
> >>>>
> >>>> Thanks,
> >>>> Albert
> >>>>
> >>>> _______________________________________________
> >>>> Eric mailing list
> >>>> Eric at riverbankcomputing.com
> >>>> http://www.riverbankcomputing.com/mailman/listinfo/eric
> >>>
> >>> --
> >>> Detlev Offenbach
> >>> detlev at die-offenbachs.de
> >
> > --
> > Detlev Offenbach
> > detlev at die-offenbachs.de
--
Detlev Offenbach
detlev at die-offenbachs.de
More information about the Eric
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.bo-luo.com.cn www.xcbs.com.cn taowoxihuan.com.cn njxifei.com.cn falv315.com.cn usbx.com.cn tllv.com.cn yucibbs.com.cn www.ytpq.com.cn shwzsh.com.cn