[issue4256] optparse/argparse: provide a simple way to get a programmatically useful list of options

2010-08-06 Thread Hans Ulrich Niedermann
Changes by Hans Ulrich Niedermann h...@n-dimensional.de: -- nosy: +ndim ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4256 ___ ___ Python-bugs

[issue1309567] linecache module returns wrong results

2008-08-05 Thread Hans Ulrich Niedermann
Hans Ulrich Niedermann [EMAIL PROTECTED] added the comment: Unless someone has fixed it since 2008-07-05, it is still relevant. I'll have to take a look at the current code first, though, to confirm in either way. There has been some discussion on this issue over at http://bugs.python.org

[issue1754483] linecache package handling

2008-07-05 Thread Hans Ulrich Niedermann
Hans Ulrich Niedermann [EMAIL PROTECTED] added the comment: Even with that patch, I'm still getting backtraces similar to this: Traceback (most recent call last): File /home/user/foo/src/foo, line 83, in module foomain(sys.argv) File /home/uli/foo/src/foo, line 79, in foomain

[issue1754483] linecache package handling

2008-06-30 Thread Hans Ulrich Niedermann
Hans Ulrich Niedermann [EMAIL PROTECTED] added the comment: The patch does not fix the underlying problem which is not limited to files named '__init__.py'. -- nosy: +ndim ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue1754483

[issue1068477] linecache.py::updatecache strips directory info from files

2008-06-30 Thread Hans Ulrich Niedermann
Hans Ulrich Niedermann [EMAIL PROTECTED] added the comment: The following issues appear to be the same bug to me: http://bugs.python.org/issue1068477 http://bugs.python.org/issue1309567 http://bugs.python.org/issue1754483 and are, as of 2008-06-30, unfixed in both rel25-maint

[issue1309567] linecache module returns wrong results

2008-06-30 Thread Hans Ulrich Niedermann
Hans Ulrich Niedermann [EMAIL PROTECTED] added the comment: The following issues appear to be the same bug to me: http://bugs.python.org/issue1068477 http://bugs.python.org/issue1309567 http://bugs.python.org/issue1754483 and are, as of 2008-06-30, unfixed in both rel25-maint

[issue1754483] linecache package handling

2008-06-30 Thread Hans Ulrich Niedermann
Hans Ulrich Niedermann [EMAIL PROTECTED] added the comment: The following issues appear to be the same bug to me: http://bugs.python.org/issue1068477 http://bugs.python.org/issue1309567 http://bugs.python.org/issue1754483 and are, as of 2008-06-30, unfixed in both rel25-maint

[issue1309567] linecache module returns wrong results

2008-06-30 Thread Hans Ulrich Niedermann
Changes by Hans Ulrich Niedermann [EMAIL PROTECTED]: -- components: +Library (Lib) -None versions: +Python 2.3, Python 2.4, Python 2.5, Python 2.6, Python 2.7 ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue1309567

[issue3213] pydoc -p should listen to [::] if IPv6 is supported

2008-06-26 Thread Hans Ulrich Niedermann
New submission from Hans Ulrich Niedermann [EMAIL PROTECTED]: According to pydoc --help, pydoc -p port Start an HTTP server on the given port on the local machine. The IP address pydoc binds to is not specified, thus I would expect it to either bind to the local address or to the wildcard

[issue2987] RFC2732 support for urlparse (e.g. http://[::1]:80/)

2008-05-27 Thread Hans Ulrich Niedermann
New submission from Hans Ulrich Niedermann [EMAIL PROTECTED]: The urlparse module's ways of splitting the location into hostname and port breaks with RFC2732 style URIs with IPv6 addresses in them: import urlparse urlparse.urlparse('http://[::1]:80/').hostname '[' urlparse.urlparse('http

[issue2987] RFC2732 support for urlparse (e.g. http://[::1]:80/)

2008-05-27 Thread Hans Ulrich Niedermann
Changes by Hans Ulrich Niedermann [EMAIL PROTECTED]: Added file: http://bugs.python.org/file10452/python-urlparse-rfc2732-rfc-list.patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2987

[issue2987] RFC2732 support for urlparse (e.g. http://[::1]:80/)

2008-05-27 Thread Hans Ulrich Niedermann
Changes by Hans Ulrich Niedermann [EMAIL PROTECTED]: Added file: http://bugs.python.org/file10453/python-urlparse-rfc2732-test.patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2987

[issue2987] RFC2732 support for urlparse (e.g. http://[::1]:80/)

2008-05-27 Thread Hans Ulrich Niedermann
Hans Ulrich Niedermann [EMAIL PROTECTED] added the comment: I have written this patch because urlparse could not retrieve the hostname or port components of URIs such as http://[:::192.168.13.37]/ or http://[dead:beef::1]:/ This problem happens with Python 2.5.1 in Fedora 9, and I have