diff options
author | Éric Araujo <merwok@netwok.org> | 2010-11-30 17:20:31 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-11-30 17:20:31 (GMT) |
commit | ff2a4ba78ce724032808ebf3e4c006b831980e7d (patch) | |
tree | 982fb7202acdcaef29bb197130484ab56a5ed9d1 /Doc/library/urllib.parse.rst | |
parent | 827fdaae30e4ee10d86a7679d7fa1c8863235ba1 (diff) | |
download | cpython-ff2a4ba78ce724032808ebf3e4c006b831980e7d.zip cpython-ff2a4ba78ce724032808ebf3e4c006b831980e7d.tar.gz cpython-ff2a4ba78ce724032808ebf3e4c006b831980e7d.tar.bz2 |
Let’s keep “throw” for the generator method and use “raise” elsewhere.
Diffstat (limited to 'Doc/library/urllib.parse.rst')
-rw-r--r-- | Doc/library/urllib.parse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index eab218e..4528c40 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -283,7 +283,7 @@ passed in, the result will contain only :class:`bytes` data. Attempting to mix :class:`str` data with :class:`bytes` or :class:`bytearray` in a single function call will result in a -:exc:`TypeError` being thrown, while attempting to pass in non-ASCII +:exc:`TypeError` being raised, while attempting to pass in non-ASCII byte values will trigger :exc:`UnicodeDecodeError`. To support easier conversion of result objects between :class:`str` and |