(*args, **kwargs)
| 1073 | delims = " \t\n`!@#$^&*()=+[{]}\\|;:'\",<>?" |
| 1074 | |
| 1075 | def match(*args, **kwargs): |
| 1076 | quote, offset, matches = match_dict_keys(*args, delims=delims, **kwargs) |
| 1077 | return quote, offset, list(matches) |
| 1078 | |
| 1079 | keys = ["foo", b"far"] |
| 1080 | assert match(keys, "b'") == ("'", 2, ["far"]) |
no test coverage detected