New submission from Tim Lesher :
While most of the occurrences of "urlparse" were corrected to "urllib.parse"
when the module was renamed, two were missed: one in the second example, and
one in the "See also" note for RFC 3986.
--
assignee: docs@py
Changes by Tim Lesher :
--
keywords: +patch
Added file: http://bugs.python.org/file22238/remove-urlparse.patch
___
Python tracker
<http://bugs.python.org/issue12
Changes by Tim Lesher :
--
nosy: +tlesher
___
Python tracker
<http://bugs.python.org/issue11620>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Tim Lesher :
--
nosy: +tlesher
___
Python tracker
<http://bugs.python.org/issue11838>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Tim Lesher :
--
nosy: +tlesher
___
Python tracker
<http://bugs.python.org/issue1189811>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Tim Lesher :
--
nosy: +tlesher
___
Python tracker
<http://bugs.python.org/issue1635741>
___
___
Python-bugs-list mailing list
Unsubscribe:
Tim Lesher added the comment:
I just hit this one myself, and was about to write a bug and patch.
On reviewing the patch:
1. This really has the same issue as the original code: it detects one of a few
known return values, and will infinitely loop on an unexpected return value.
It would be
Tim Lesher added the comment:
Both CRC-32 and ADLER32 are standards (described in ISO 3309 and RFC
1950 respectively); whatever fix implemented should make sure that the
output complies.
ISO 3309 isn't available online as far as I can see, but CRC-32
reference code is published in RFC
New submission from Tim Lesher:
ConfigParser doesn't prevent "manually" adding a section named DEFAULT;
however, doing so creates a duplicate, inaccessible [DEFAULT] section in
the config file:
>>> import sys, ConfigParser
>>> c = ConfigParser.ConfigPa
New submission from Tim Lesher <[EMAIL PROTECTED]>:
The urllib.quote docstring implies that it quotes only characters in RFC
2396's "reserved" set.
However, urllib.quote currently escapes all characters except those in
an "always_safe" list, which consists of alph
Tim Lesher <[EMAIL PROTECTED]> added the comment:
This one-line change to threading.py makes Event.wait() return isSet().
Also includes the corresponding update to documentation in threading.rst.
--
keywords: +patch
nosy: +tlesher
Added file: http://bugs.python.org/file10203/even
Changes by Tim Lesher <[EMAIL PROTECTED]>:
--
assignee: -> georg.brandl
components: +Documentation, Library (Lib) -Interpreter Core
nosy: +georg.brandl
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Changes by Tim Lesher <[EMAIL PROTECTED]>:
--
nosy: +tlesher
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue4483>
___
___
Python
Changes by Tim Lesher :
--
nosy: +tlesher
___
Python tracker
<http://bugs.python.org/issue5015>
___
___
Python-bugs-list mailing list
Unsubscribe:
Tim Lesher added the comment:
This patch should both correct the incorrect acceptance of strings and the
incorrect rejection of buffer objects when using SND_MEMORY.
--
keywords: +patch
Added file: http://bugs.python.org/file24470/11620-PlaySound.patch
Changes by Tim Lesher :
--
nosy: +tlesher
___
Python tracker
<http://bugs.python.org/issue3905>
___
___
Python-bugs-list mailing list
Unsubscribe:
Tim Lesher added the comment:
Victor: would you object to ysj.ray's solution?
I don't think it was an option when we last looked at this issue.
--
___
Python tracker
<http://bugs.python.
Tim Lesher added the comment:
Updated patch: use Py_FileSystemDefaultEncoding (if possible) when sys.stdin
is (or becomes) invalid; if none, then fails without entering infinite loop.
Docs for PyRun_InteractiveLoopFlags have been updated.
--
Added file: http://bugs.python.org
Tim Lesher added the comment:
Corrected const warning in previous patch.
--
Added file: http://bugs.python.org/file24794/8070-use-default-encoding-2.patch
___
Python tracker
<http://bugs.python.org/issue8
Changes by Tim Lesher :
--
nosy: +tlesher
___
Python tracker
<http://bugs.python.org/issue8010>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Tim Lesher :
--
nosy: +tlesher
___
Python tracker
<https://bugs.python.org/issue34590>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Tim Lesher :
--
nosy: +tlesher
___
Python tracker
<http://bugs.python.org/issue3329>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Tim Lesher :
--
nosy: +tlesher
nosy_count: 2.0 -> 3.0
___
Python tracker
<http://bugs.python.org/issue4510>
___
___
Python-bugs-list mailing list
Un
Tim Lesher added the comment:
Thanks, Antoine. I will re-check the patch against trunk and add tests
this week.
--
___
Python tracker
<http://bugs.python.org/issue1674
Tim Lesher added the comment:
There are a number of similar mentions in the C API docs and index; attached is
a patch that removes each.
--
keywords: +patch
nosy: +tlesher
Added file: http://bugs.python.org/file18068/remove-extraneous-types.diff
Tim Lesher added the comment:
It looks as if this has been addressed for list.index (aka issue #7252), in
r76058. The same fix could be applied for list.remove.
--
___
Python tracker
<http://bugs.python.org/issue4
Tim Lesher added the comment:
Added patch that replicates the change in r82035 for Visual Studio 2005 (VC8)
builds.
--
nosy: +tlesher
Added file: http://bugs.python.org/file18107/add_time_to_vc8_build.diff
___
Python tracker
<h
Tim Lesher added the comment:
This patch combines the fix from Georg Brandl's original patch with the fix
made to listindex. The r76058 fix fails the test in Georg's original test
where the repr of the item to be removed itself raises; this patch handles that
case for both list.
Tim Lesher added the comment:
This appears to run afoul of Microsoft's "security-enhanced CRT", which aborts
a program that calls certain API functions (including signal) with invalid
parameters.
PyOS_getsig() has conditionally-compiled code added to deal with this (and
Tim Lesher added the comment:
No, there's no automated way to keep "legacy" Windows toolchains in sync; short
of adopting something like Scons or CMAKE (which I'm *not* suggesting) I don't
think I've seen a trustworthy way of doing so.
The PCBuild's "
Changes by Tim Lesher :
Removed file: http://bugs.python.org/file18107/add_time_to_vc8_build.diff
___
Python tracker
<http://bugs.python.org/issue9012>
___
___
Python-bug
Changes by Tim Lesher :
Added file: http://bugs.python.org/file18113/add_time_to_vc8_build.diff
___
Python tracker
<http://bugs.python.org/issue9012>
___
___
Python-bug
Tim Lesher added the comment:
Ugh. That's a reasonable objection.
What's the best thing to do in this case, generally speaking?
list.index() does print the full repr on a value error; and a quick grep shows
a number of other similar uses, although those don't seem to be as e
33 matches
Mail list logo