Message 354465 - Python tracker
Message354465
| Author | kyleam |
|---|---|
| Recipients | Yaroslav.Halchenko, kyleam |
| Date | 2019-10-11.16:13:34 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1570810414.35.0.166038851141.issue38449@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
I've performed a bisect the issue with the following script:
#!/bin/sh
make -j3 || exit 125
./python <<\EOF || exit 1
import sys
import mimetypes
res = mimetypes.MimeTypes(strict=False).guess_type(";1.tar.gz")
if res[0] is None:
sys.exit(1)
EOF
That points to 87bd2071c7 (bpo-22347: Update mimetypes.guess_type to allow proper parsing of URLs (GH-15522), 2019-09-05). That commit was included in 3.7.5rc1 when it was cherry picked by 8873bff287. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2019-10-11 16:13:34 | kyleam | set | recipients: + kyleam, Yaroslav.Halchenko |
| 2019-10-11 16:13:34 | kyleam | set | messageid: <1570810414.35.0.166038851141.issue38449@roundup.psfhosted.org> |
| 2019-10-11 16:13:34 | kyleam | link | issue38449 messages |
| 2019-10-11 16:13:34 | kyleam | create | |