Re: [Sikuli-driver] [Question #266141]: [1.1.0] Jython-2.7-rc3: Subclassing Region: with __init__ the java level constructors not used with super()__init__(), leaving Region "empty" --- workaround

2015-04-30 Thread forrest
Question #266141 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/266141 Status: Open => Solved forrest confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because you are a member of Sikuli Drivers, whic

Re: [Sikuli-driver] [Question #266141]: [1.1.0] Jython-2.7-rc3: Subclassing Region: with __init__ the java level constructors not used with super()__init__(), leaving Region "empty" --- workaround

2015-04-30 Thread forrest
Question #266141 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/266141 Status: Answered => Open forrest is still having a problem: Yes, that worked for me. Jython adds another "fun" dimension to the challenge of SWD... Thank You for your attention to this. Much appreciate

Re: [Sikuli-driver] [Question #266097]: Problem performs try / execpt

2015-04-30 Thread Eduardo
Question #266097 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/266097 Status: Open => Solved Eduardo confirmed that the question is solved: pegou! -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli

[Sikuli-driver] [Question #264950]: Status of bug #1450362 changed to 'In Progress' in Sikuli

2015-04-30 Thread RaiMan
Bug #1450362 status changed in Sikuli: New => In Progress https://bugs.launchpad.net/sikuli/+bug/1450362 "[1.1.0] Jython 2.7: unicode problem: unpaired surrogate at start up in site.py (Windows only )" This bug is linked to #264950. Intermittent failure of Sikuli - unpaired surrogate ht

[Sikuli-driver] [Bug 1450362] [NEW] [1.1.0] Jython 2.7: unicode problem: unpaired surrogate at start up in site.py (Windows only ????)

2015-04-30 Thread RaiMan
Public bug reported: * problem There MUST be some unicode characters be involved in the environment and startup sequence in such a case. The problem comes up at the edge between UTF-8 (Jython level) and UTF-16 (Java level) and according to the comments in the net is a common pro

Re: [Sikuli-driver] [Question #265161]: Urgent: Any one automated GUI application in Ubuntu using Sikuli

2015-04-30 Thread Launchpad Janitor
Question #265161 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/265161 Status: Open => Expired Launchpad Janitor expired the question: This question was expired because it remained in the 'Open' state without activity for the last 15 days. -- You received this question no

Re: [Sikuli-driver] [Question #264950]: Intermittent failure of Sikuli - unpaired surrogate

2015-04-30 Thread RaiMan
Question #264950 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264950 Linked to bug: #1450362 https://bugs.launchpad.net/bugs/1450362 "[1.1.0] Jython 2.7: unicode problem: unpaired surrogate at start up in site.py (Windows only )" -- You received this questio

Re: [Sikuli-driver] [Question #264950]: Intermittent failure of Sikuli - unpaired surrogate

2015-04-30 Thread RaiMan
Question #264950 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264950 RaiMan posted a new comment: Thanks for feedback. After checking again about this behaviour: There MUST be some unicode characters be involved in your environment and startup sequence. The problem comes up

[Sikuli-driver] [Bug 1450354] [NEW] [1.1.0] Jython-2.7-rc3: Subclassing Region: with __init__ the java level constructors not used with super()__init__(), leaving Region "empty" --- workaround

2015-04-30 Thread RaiMan
Public bug reported: * workaround setup a subclass of Region this way: class MyRegion(Region): def __init__(self, x=1, y=1, w=1, h=1): self.setRect(x, y, w, h) --- Installed nightly sikulixsetup-1.1.0-20150427.231036-5

[Sikuli-driver] [Question #266141]: Status of bug #1450354 changed to 'Confirmed' in Sikuli

2015-04-30 Thread RaiMan
Bug #1450354 status changed in Sikuli: New => Confirmed https://bugs.launchpad.net/sikuli/+bug/1450354 "[1.1.0] Jython-2.7-rc3: Subclassing Region: with __init__ the java level constructors not used with super()__init__(), leaving Region "empty" --- workaround" This bug is linked to #26614

Re: [Sikuli-driver] [Question #266141]: [1.1.0] Jython-2.7-rc3: Subclassing Region: with __init__ the java level constructors not used with super()__init__(), leaving Region "empty" --- workaround

2015-04-30 Thread RaiMan
Question #266141 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/266141 Description changed to: * workaround setup a subclass of Region this way: class MyRegion(Region): def __init__(self, x=1, y=1, w=1, h=1): self.setRect(x, y, w, h) --

Re: [Sikuli-driver] [Question #266141]: [1.1.0] Jython-2.7-rc3: Subclassing Region: with __init__ the java level constructors not used with super()__init__(), leaving Region "empty" --- workaround

2015-04-30 Thread RaiMan
Question #266141 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/266141 Linked to bug: #1450354 https://bugs.launchpad.net/bugs/1450354 "[1.1.0] Jython-2.7-rc3: Subclassing Region: with __init__ the java level constructors not used with super()__init__(), leaving Reg

Re: [Sikuli-driver] [Question #266141]: [1.1.0] Jython-2.7-rc3: Subclassing Region: with __init__ the java level constructors not used with super()__init__(), leaving Region "empty" --- workaround

2015-04-30 Thread RaiMan
Question #266141 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/266141 Summary changed to: [1.1.0] Jython-2.7-rc3: Subclassing Region: with __init__ the java level constructors not used with super()__init__(), leaving Region "empty" --- workaround -- You received this quest

Re: [Sikuli-driver] [Question #266141]: [1.1.0] Jython-2.7-rc3: Extending Region breaks when I move to new Sikuli

2015-04-30 Thread RaiMan
Question #266141 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/266141 Status: Open => Answered RaiMan proposed the following answer: I do not know wether this is a Jython bug or correct behaviour. The Jython super class Region does not have any __init__. So in previous Jy

Re: [Sikuli-driver] [Question #266141]: [1.1.0] Jython-2.7-rc3: Extending Region breaks when I move to new Sikuli

2015-04-30 Thread RaiMan
Question #266141 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/266141 Summary changed to: [1.1.0] Jython-2.7-rc3: Extending Region breaks when I move to new Sikuli -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contac

Re: [Sikuli-driver] [Question #264950]: Intermittent failure of Sikuli - unpaired surrogate

2015-04-30 Thread Geoff Bache
Question #264950 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264950 Status: Answered => Solved Geoff Bache confirmed that the question is solved: Jython 2.7-rc3 also has the problem. But Jython 2.5.3 seems to work without issues. Thanks for the answers! -- You receive