[Bug 1200954] Re: Flumotion does not start: AttributeError: 'EPollReactor' object has no attribute 'listenWith'

2014-11-27 Thread Kenji Noguchi
There is a patch proposed at the upstream.  I applied it, and worked nicely.
http://lists.fluendo.com/pipermail/flumotion-devel/2014-January/000698.html

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1200954

Title:
  Flumotion does not start: AttributeError: 'EPollReactor' object has no
  attribute 'listenWith'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flumotion/+bug/1200954/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 626489] Re: regex match.groupdict() returns wrong values

2010-08-30 Thread Kenji Noguchi
Preliminary investigation revealed that the regex bug was not of ironpython but 
mono.
Test case worked fine with MS System.dll dropped in.

-- 
regex match.groupdict() returns wrong values
https://bugs.launchpad.net/bugs/626489
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 626489] [NEW] regex match.groupdict() returns wrong values

2010-08-29 Thread Kenji Noguchi
Public bug reported:

Binary package hint: ironpython

match object's groupdict() returns wrong key  value combinations.
Attached is a test case to reproduce the problem.

Works:
IronPython 2.6 for .NET2.0 SP1 on Windows XP SP3 32bit
CPython2.6 on Ubuntu 10.04LTS i386
CPython2.6 on Ubuntu 10.04LTS x86_64

Does'nt work:
ironpython 2.6~beta2-2 on Ubuntu 10.04.1 LTS i386
ironpython 2.6~beta2-2 on Ubuntu 10.04.1 LTS x86_64

#Test case
import re
p = re.compile(r'''
 (?Pname[\w\+]+)://
 (?:
 (?Pusername[^:/]*)
 (?::(?Ppassword[^/]*))?
 @)?
 (?:
 (?Phost[^/:]*)
 (?::(?Pport[^/]*))?
 )?
 (?:/(?Pdatabase.*))?
 '''
 , re.X)

m = p.match('http://user:p...@localhost:666/xyz')
print m.groups()
print m.groupdict()

# expected result.  dict keys in arbitrary order
('http', 'user', 'pass', 'localhost', '666', 'xyz')
{'username': 'user', 'protocol': 'http', 'database': 'xyz', 'host': 
'localhost', 'password': 'pass', 'port': '666'}

# results on ubuntu 10.04LTS i386/x86_64
('http', 'user', 'pass', 'localhost', '666', 'xyz')
{'username': 'http://user:p...@localhost:666/xyz', 'port': 'xyz', 'protocol': 
'http', 'database': 'user', 'host': 'localhost', 'password': '666'}

** Affects: ironpython (Ubuntu)
 Importance: Undecided
 Status: New

-- 
regex match.groupdict() returns wrong values
https://bugs.launchpad.net/bugs/626489
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs