Skip to content

Commit dedcb9e

Browse files
committed
Add __all__ to w3lib.url package
Fixes #54
1 parent fddf599 commit dedcb9e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

w3lib/url.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,3 +264,8 @@ def any_to_uri(uri_or_path):
264264
return path_to_file_uri(uri_or_path)
265265
u = urlparse(uri_or_path)
266266
return uri_or_path if u.scheme else path_to_file_uri(uri_or_path)
267+
268+
269+
__all__ = ["add_or_replace_parameter", "any_to_uri", "file_uri_to_path",
270+
"path_to_file_uri", "safe_download_url", "safe_url_string",
271+
"url_query_cleaner"]

0 commit comments

Comments
 (0)