diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-03-16 22:10:00 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-03-16 22:10:00 -0400 |
commit | 41914349adbee033ba48d6c52dc26a7d36cd78fa (patch) | |
tree | 8600fb23fd83c3f0e056bea6e79d75ea9a0a214d | |
parent | 69ebfe43b07928b33799854d90134e4b68aad8e6 (diff) | |
download | cpython-git-41914349adbee033ba48d6c52dc26a7d36cd78fa.tar.gz |
#11780: s/throw/raise/
-rw-r--r-- | Doc/library/email.encoders.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/email.encoders.rst b/Doc/library/email.encoders.rst index 3c32c3bb42..81d30961db 100644 --- a/Doc/library/email.encoders.rst +++ b/Doc/library/email.encoders.rst @@ -19,7 +19,7 @@ payload, encode it, and reset the payload to this newly encoded value. They should also set the :mailheader:`Content-Transfer-Encoding` header as appropriate. Note that these functions are not meaningful for a multipart message. They -must be applied to individual subparts instead, and will throw a +must be applied to individual subparts instead, and will raise a :exc:`TypeError` if passed a message whose type is multipart. Here are the encoding functions provided: |