Björn Lindqvist added the comment:
I don't have the expertise to backport it myself, but the problem certainly is
still present in python 2.7.1 on Windows 7. It is especially pronounced when
using threading to read from multiple url files.
--
nosy: +bj
Björn Lindqvist <[EMAIL PROTECTED]> added the comment:
There is no progress on this. I had lots of documentation written in
Latex on a laptop, but then I lost it. Sorry.
--
nosy: +bjourne
_
Tracker <[EMAIL PROTECTED]>
<http://
New submission from Björn Lindqvist :
It would be great if the docs were clearer on what you can assume on the
ordering of pathlib.Path.glob() calls. Is it sorted? Is it the same in
consecutive calls? I'm guessing you can't assume anything at all, which I think
should be clarified i
Björn Lindqvist added the comment:
The bug is still present on the default build which many distros uses which
produces an invalid build. That means
./configure && make && make install
is broken! --enable-shared should be turned on by default because many (most?)
distro
Björn Lindqvist added the comment:
In my app, I need to transform the regexp created from user input so
that it matches unicode characters with their ascii equivalents. For
example, if someone searches for "el nino", that should match the string
"el ñino". Similarly, se
Björn Lindqvist added the comment:
I'm not Hallvard but I'd also appreciate this feature. I think it is
quite important to have for automated build systems; Python seem to
build correctly but then down the line some other package fails because
the bz2 module is not available.
IMHO i
New submission from Björn Lindqvist:
This affects both Python 2 and 3. This is as expected:
>>> urlparse('abc:123.html')
ParseResult(scheme='abc', netloc='', path='123.html', params='', query='',
fragment='')
&