This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author The Compiler
Recipients The Compiler, ammar2, dhess, steve.dower, toonn, xtreak
Date 2019-11-18.11:45:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1574077525.16.0.897775012515.issue38656@roundup.psfhosted.org>
In-reply-to
Content
I now bisected this with the following script:

#!/bin/bash
git clean -dxf
./configure || exit 125
make -j2 || exit 125
output=$(./python -c "import mimetypes; mt = mimetypes.MimeTypes(); print(mt.guess_type('E01.mkv')[0])")
echo "$output"
echo "$(git describe) $output" >> ../bisect-results.txt
[[ $output == None ]] && exit 1 || exit 0

This shows 9fc720e5e4f772598013ea48a3f0d22b2b6b04fa as the commit which broke this (bpo-4963, GH-3062).
History
Date User Action Args
2019-11-18 11:45:25The Compilersetrecipients: + The Compiler, steve.dower, ammar2, dhess, xtreak, toonn
2019-11-18 11:45:25The Compilersetmessageid: <1574077525.16.0.897775012515.issue38656@roundup.psfhosted.org>
2019-11-18 11:45:25The Compilerlinkissue38656 messages
2019-11-18 11:45:25The Compilercreate