Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
plq committed Feb 3, 2022
1 parent b2675f1 commit 3871050
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions spyne/protocol/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,11 +419,8 @@ def _compile_url_pattern(cls, pattern_s):
pattern = _full_pattern_re.sub(r'(?P<\1>[^/]*)', pattern)

pattern_b = pattern_s.encode(cls.URL_ENCODING)
print(pattern_b.decode('latin1'))
pattern_b = _fragment_pattern_b_re.sub(b'(?P<\\1>[^/]*)', pattern_b)
print(pattern_b.decode('latin1'))
pattern_b = _full_pattern_b_re.sub(b'(?P<\\1>[^/]*)', pattern_b)
print(pattern_b.decode('latin1'))

return re.compile(pattern), re.compile(pattern_b)

Expand Down

0 comments on commit 3871050

Please sign in to comment.