Skip to content

Commit

Permalink
code look and feel
Browse files Browse the repository at this point in the history
  • Loading branch information
gruns committed Apr 12, 2021
1 parent 5212d18 commit dd8da2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion furl/furl.py
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,6 @@ def encode(self, delimiter='&', quote_plus=True, dont_quote='',
Query('#=^').encode(dont_quote='#^') == '%23=%5E'.
Returns: A URL encoded query string using <delimiter> as the
delimiter separating key:value pairs. The most common and
default delimiter is '&', but ';' can also be specified. ';' is
Expand Down
4 changes: 2 additions & 2 deletions tests/test_furl.py
Original file line number Diff line number Diff line change
Expand Up @@ -2064,8 +2064,8 @@ def test_join(self):
assert f.url == 'http://pepp.ru/a/b/c#uwantpump?'

# In edge cases (e.g. URLs without an authority/netloc), behave
# identically to urllib.parse.urljoin(), which changed behavior
# in Python 3.9
# identically to urllib.parse.urljoin(), which changed behavior in
# Python 3.9.
f = furl.furl('wss://slrp.com/').join('foo:1')
if sys.version_info[:2] < (3, 9):
assert f.url == 'wss://slrp.com/foo:1'
Expand Down

0 comments on commit dd8da2c

Please sign in to comment.