diff options
author | Thomas Wouters <thomas@python.org> | 2008-03-18 20:19:54 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2008-03-18 20:19:54 (GMT) |
commit | 40a088dc27865eb1236d6c728d2880ecd0022a65 (patch) | |
tree | 9489856463cd6b00e2f40ec200a2d640704d8b50 /Lib/sre_compile.py | |
parent | e8c3d266c8cea759a0eb1c17b9c5f989f87bb135 (diff) | |
download | cpython-40a088dc27865eb1236d6c728d2880ecd0022a65.zip cpython-40a088dc27865eb1236d6c728d2880ecd0022a65.tar.gz cpython-40a088dc27865eb1236d6c728d2880ecd0022a65.tar.bz2 |
Fix 're' to work on bytes. It could do with a few more tests, though.
Diffstat (limited to 'Lib/sre_compile.py')
-rw-r--r-- | Lib/sre_compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py index f3b415d..4f62416 100644 --- a/Lib/sre_compile.py +++ b/Lib/sre_compile.py @@ -472,7 +472,7 @@ def _compile_info(code, pattern, flags): code[skip] = len(code) - skip def isstring(obj): - return isinstance(obj, str) + return isinstance(obj, (str, bytes)) def _code(p, flags): |