[Python-checkins] r58706 - python/trunk/Lib/mimetypes.py

guido.van.rossum python-checkins at python.org
Mon Oct 29 21:52:45 CET 2007


Author: guido.van.rossum
Date: Mon Oct 29 21:52:45 2007
New Revision: 58706

Modified:
   python/trunk/Lib/mimetypes.py
Log:
Patch 1353 by Jacob Winther.
Add mp4 mapping to mimetypes.py.


Modified: python/trunk/Lib/mimetypes.py
==============================================================================
--- python/trunk/Lib/mimetypes.py	(original)
+++ python/trunk/Lib/mimetypes.py	Mon Oct 29 21:52:45 2007
@@ -393,6 +393,7 @@
         '.movie'  : 'video/x-sgi-movie',
         '.mp2'    : 'audio/mpeg',
         '.mp3'    : 'audio/mpeg',
+        '.mp4'    : 'video/mp4',
         '.mpa'    : 'video/mpeg',
         '.mpe'    : 'video/mpeg',
         '.mpeg'   : 'video/mpeg',


More information about the Python-checkins mailing list