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 Yaroslav.Halchenko
Recipients Yaroslav.Halchenko
Date 2019-10-11.14:06:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570802800.7.0.378651276775.issue38449@roundup.psfhosted.org>
In-reply-to
Content
Our tests in DataLad started to fail while building on Debian with Python 3.7.5rc1 whenever they passed just fine previously with 3.7.3rc1. Analysis boiled down to mimetypes

    $> ./python3.9 -c 'import mimetypes; mimedb = mimetypes.MimeTypes(strict=False); print(mimedb.guess_type(";1.tar.gz"))'                           
    (None, None)
    
    $> ./python3.9 -c 'import mimetypes; mimedb = mimetypes.MimeTypes(strict=False); print(mimedb.guess_type("1.tar.gz"))' 
    ('application/x-tar', 'gzip')
    
    $> git describe
    v3.8.0b1-1174-g2b7dc40b2af


Ref: 

- original issue in DataLad: https://github.com/datalad/datalad/issues/3769
History
Date User Action Args
2019-10-11 14:06:40Yaroslav.Halchenkosetrecipients: + Yaroslav.Halchenko
2019-10-11 14:06:40Yaroslav.Halchenkosetmessageid: <1570802800.7.0.378651276775.issue38449@roundup.psfhosted.org>
2019-10-11 14:06:40Yaroslav.Halchenkolinkissue38449 messages
2019-10-11 14:06:40Yaroslav.Halchenkocreate