[issue4962] urlparse nfs url (rfc 2224)

2009-03-30 Thread Senthil
Senthil orsent...@gmail.com added the comment: Patch to fix this. Looked into the RFCs and I do not find a reason why the nfs://server/path/to/file.txt should not be parsed as: urlparse.urlsplit('nfs://server/path/to/file.txt') SplitResult(scheme='nfs', netloc='server',

[issue4962] urlparse nfs url (rfc 2224)

2009-03-30 Thread Senthil
Changes by Senthil orsent...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file13490/issue4962-py27.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4962 ___

[issue4962] urlparse nfs url (rfc 2224)

2009-03-30 Thread Senthil
Changes by Senthil orsent...@gmail.com: Added file: http://bugs.python.org/file13491/issue4962-py3k.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4962 ___

[issue4962] urlparse nfs url (rfc 2224)

2009-03-30 Thread Jeremy Hylton
Jeremy Hylton jer...@alum.mit.edu added the comment: looks good to me -- nosy: +jhylton ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4962 ___ ___

[issue4962] urlparse nfs url (rfc 2224)

2009-03-30 Thread Senthil
Senthil orsent...@gmail.com added the comment: fixed. -- assignee: - orsenthil resolution: - fixed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4962 ___

[issue4962] urlparse nfs url (rfc 2224)

2009-03-30 Thread Senthil
Changes by Senthil orsent...@gmail.com: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4962 ___ ___ Python-bugs-list

[issue4962] urlparse nfs url (rfc 2224)

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4962 ___ ___ Python-bugs-list mailing list

[issue4962] urlparse nfs url (rfc 2224)

2009-01-19 Thread Cédric BRINER
Cédric BRINER bri...@infomaniak.ch added the comment: Do you encounter any errors or weird behaviors while using nfs url? Do you mean: Do I have problem using the python module in conjunction of urlparse ? No, because, I'm not yet using it. But I would like to do it. And I find it strange that

[issue4962] urlparse nfs url (rfc 2224)

2009-01-16 Thread Cédric BRINER
New submission from Cédric BRINER bri...@infomaniak.ch: Hi, I'd like to add the ability to parse nfs url (rfc2224). Which look like: nfs://server/my/path To do this, we only need to add 'nfs' in uses_netloc to make it work cEd -- components: Extension Modules messages: 79946 nosy:

[issue4962] urlparse nfs url (rfc 2224)

2009-01-16 Thread Senthil
Senthil orsent...@gmail.com added the comment: I'd like to add the ability to parse nfs url (rfc2224). Which look like: nfs://server/my/path To do this, we only need to add 'nfs' in uses_netloc to make it work Do you encounter any errors or weird behaviors while using nfs url? The RFC2224