Silence the BytesWarning, due to patch r83294 for #9301
diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py
index 44f4a4b..48b187a 100644
--- a/Lib/urllib/parse.py
+++ b/Lib/urllib/parse.py
@@ -314,7 +314,9 @@
     """unquote_to_bytes('abc%20def') -> b'abc def'."""
     # Note: strings are encoded as UTF-8. This is only an issue if it contains
     # unescaped non-ASCII characters, which URIs should not.
-    if string in (b'', ''):
+    if not string:
+        # Is it a string-like object?
+        string.split
         return b''
     if isinstance(string, str):
         string = string.encode('utf-8')