-
-
Notifications
You must be signed in to change notification settings - Fork 33.4k
Closed as not planned
Labels
pendingThe issue will be closed if no feedback is providedThe issue will be closed if no feedback is providedstdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directorytype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
Bug report
Bug description:
Advanced SubStation is a common subtitle format, with file usually having the extension .ass, and the .ass extension is not commonly used for AAC audio files. However, mimetypes currently gives audio/aac as the type for .ass files:
mimetypes.guess_type('test.ass') # -> ('audio/aac', None)This appears to be due to this erroneous line:
Line 534 in 4fc82b6
| '.ass' : 'audio/aac', |
CPython versions tested on:
3.12
Operating systems tested on:
macOS
Linked PRs
p0358decorator-factory and faishalirwn
Metadata
Metadata
Assignees
Labels
pendingThe issue will be closed if no feedback is providedThe issue will be closed if no feedback is providedstdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directorytype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error