diff options
author | Georg Brandl <georg@python.org> | 2009-06-08 09:07:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-08 09:07:34 (GMT) |
commit | cdf8b34b5164fb660c6d2554efb0bf45896c09e2 (patch) | |
tree | c12f7983f180c51cc28f4ce42c7a53b6962ddf53 /Lib/mimetypes.py | |
parent | 472f2e22054a36cfe4331e474ab446f0a17888f7 (diff) | |
download | cpython-cdf8b34b5164fb660c6d2554efb0bf45896c09e2.zip cpython-cdf8b34b5164fb660c6d2554efb0bf45896c09e2.tar.gz cpython-cdf8b34b5164fb660c6d2554efb0bf45896c09e2.tar.bz2 |
Fix default value in docstring.
Diffstat (limited to 'Lib/mimetypes.py')
-rw-r--r-- | Lib/mimetypes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 4c49d9d..f0da453 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -2,9 +2,9 @@ This module defines two useful functions: -guess_type(url, strict=1) -- guess the MIME type and encoding of a URL. +guess_type(url, strict=True) -- guess the MIME type and encoding of a URL. -guess_extension(type, strict=1) -- guess the extension for a given MIME type. +guess_extension(type, strict=True) -- guess the extension for a given MIME type. It also contains the following, for tuning the behavior: |