This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Rsync protocol missing from urlparse
Type: Stage:
Components: Library (Lib) Versions: Python 2.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: brett.cannon, mok0
Priority: normal Keywords:

Created on 2004-06-28 15:03 by mok0, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg21345 - (view) Author: Morten Kjeldgaard (mok0) Date: 2004-06-28 15:03
The rsync protocol is missing from urlparse.py. 

>>> import urlparse
>>> urlparse.urlparse("rsync://a.b.c/d/e")
('rsync', '', '//a.b.c/d/e', '', '', '')

The machine name a.b.c should be in field 1 of the
result, and the directory part /e/f in field 2.
msg21346 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2004-06-29 04:09
Logged In: YES 
user_id=357491

Fixed in rev. 1.45 in HEAD and rev. 1.40.10.1 in 2.3 .
History
Date User Action Args
2022-04-11 14:56:05adminsetgithub: 40473
2004-06-28 15:03:22mok0create