summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Hupp <adam@hupp.org>2021-10-23 10:27:22 -0700
committerGitHub <noreply@github.com>2021-10-23 10:27:22 -0700
commita9b5592b6193a78530a312ea115820702b69746a (patch)
tree4727c9fdf8a16979668988e9fc7dfc8b53a68e56
parent7f7542fcbc192fef6e4939f4eb748e941a720b2c (diff)
parent0ae7e7ceac0e80e03adc75c858bb378c0427331a (diff)
downloadpython-magic-a9b5592b6193a78530a312ea115820702b69746a.tar.gz
Merge pull request #253 from marxin/python-bytecode
Support file 5.41.
-rwxr-xr-xtest/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.py b/test/test.py
index 0c4621c..e443b84 100755
--- a/test/test.py
+++ b/test/test.py
@@ -90,7 +90,7 @@ class MagicTest(unittest.TestCase):
try:
m = magic.Magic(mime=True)
self.assert_values(m, {
- 'magic._pyc_': ('application/octet-stream', 'text/x-bytecode.python'),
+ 'magic._pyc_': ('application/octet-stream', 'text/x-bytecode.python', 'application/x-bytecode.python'),
'test.pdf': 'application/pdf',
'test.gz': ('application/gzip', 'application/x-gzip'),
'test.snappy.parquet': 'application/octet-stream',