aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/hydrilla/url_patterns.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/hydrilla/url_patterns.py b/src/hydrilla/url_patterns.py
index 860d456..84f56bc 100644
--- a/src/hydrilla/url_patterns.py
+++ b/src/hydrilla/url_patterns.py
@@ -101,18 +101,6 @@ class ParsedUrl:
ParsedPattern = t.NewType('ParsedPattern', ParsedUrl)
-# # We sometimes need a dummy pattern that means "match everything".
-# catchall_pattern = ParsedPattern(
-# ParsedUrl(
-# orig_url = '<dummy_catchall_url_pattern>'
-# scheme = '<dummy_all-scheme>'
-# domain_labels = ('***',)
-# path_segments = ('***',)
-# has_trailing_slash = False
-# port = 0
-# )
-# )
-
# URLs with those schemes will be recognized but not all of them have to be
# actually supported by Hydrilla server and Haketilo proxy.