[issue35397] Undeprecate and document urllib.parse.unwrap

2019-05-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks for the report and for the patch. :-) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue35397] Undeprecate and document urllib.parse.unwrap

2019-05-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 674ee1260025ff36f27e5d70ff6b66e3aab880bf by Cheryl Sabella (Rémi Lapeyre) in branch 'master': bpo-35397: Remove deprecation and document urllib.parse.unwrap (GH-11481)

[issue35397] Undeprecate and document urllib.parse.unwrap

2019-01-09 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- keywords: +patch, patch, patch pull_requests: +10996, 10997, 10998 stage: -> patch review ___ Python tracker ___

[issue35397] Undeprecate and document urllib.parse.unwrap

2019-01-09 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- keywords: +patch, patch pull_requests: +10996, 10997 stage: -> patch review ___ Python tracker ___ ___

[issue35397] Undeprecate and document urllib.parse.unwrap

2019-01-09 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- keywords: +patch pull_requests: +10996 stage: -> patch review ___ Python tracker ___ ___

[issue35397] Undeprecate and document urllib.parse.unwrap

2018-12-16 Thread Éric Araujo
Éric Araujo added the comment: I suspect the only reason was that unwrap was caught in the bag of «undocumented functions (that don‘t seem useful)». Personally I think I see more bare URLs than URLs in angle brackets these days, and `URL:` feels like an archaic marker :) But I don’t see any

[issue35397] Undeprecate and document urllib.parse.unwrap

2018-12-03 Thread Steven D'Aprano
New submission from Steven D'Aprano : The urllib.parse module contains an undocumented function unwrap: unwrap('') --> 'type://host/path' This is useful. I've been re-inventing this function in many of my scripts, because I didn't know it existed (not documented!) and only stumbled