forked from n-ando/OpenRTM-aist-Python
-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
urllib.parse.urlparse関数の動作がバージョンにより異なる。
> urllib.parse.urlparse("localhost:2809")
ParseResult(scheme='localhost', netloc='', path='2809', params='', query='', fragment='')
> urllib.parse.urlparse("localhost:2809")
ParseResult(scheme='', netloc='', path='localhost:2809', params='', query='', fragment='')
この処理は例えばhttpのURLを入力した場合などにプロトコルを判別するために実行しているが、動作の違いにより問題が発生する場合がある
To Reproduce
Reproducibility
urllibのバージョンによっては100%
Expected behavior
Environment
- OS: [e.g. Ubuntu 16.04 32bits]
- OpenRTM-aist Version [e.g. 1.2.1]
- ...
Additional context
Add any other context about the problem here.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working