Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

mimetypes.py 318B

1234567
  1. # The two constants below should keep in sync.
  2. # Default content type for files which have no explicit content type.
  3. DEFAULT_MIME_TYPE = "application/octet-stream"
  4. # Default file extension for files which have no explicit content type, should
  5. # correspond to the `DEFAULT_MIME_TYPE` above.
  6. DEFAULT_EXTENSION = ".bin"