[Bug 109516] Re: pycurl.CurlMulti's remove_handle does not work

2007-09-12 Thread qindehua
Actually it is not a bug of pycurl but a bug of libcurl, see http://curl.haxx.se/mail/lib-2006-08/0231.html It has been fixed in the curl 7.16.4 release. -- pycurl.CurlMulti's remove_handle does not work https://bugs.launchpad.net/bugs/109516 You received this bug notification because you are a

[Bug 39246] Re: kdevelop3's mo missed in language-pack-kde-zh-base

2007-07-11 Thread qindehua
yes, this is still a problem on feisty. these files are missing in language-pack-kde-zh-base: kdevelop.mo kdevtipofday.mo kdevdesigner.mo desktop_kdevelop.mo -- kdevelop3's mo missed in language-pack-kde-zh-base https://bugs.launchpad.net/bugs/39246 You received this bug notification because

[Bug 109516] pycurl.CurlMulti's remove_handle does not work

2007-04-23 Thread qindehua
Public bug reported: #on ubuntu feisty, following code produce wrong results: import pycurl c = pycurl.Curl() c.setopt(pycurl.URL, http://curl.haxx.se;) m = pycurl.CurlMulti() m.add_handle(c) m.remove_handle(c) #does not work m.add_handle(c) while 1: ret, num_handles = m.perform()