diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2015-04-13 19:07:57 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2015-04-13 19:07:57 (GMT) |
commit | 3764fc295115e4eb83ffcd0b3d9a13c71bf2f20a (patch) | |
tree | 89365f16770e1e95445156f8bb3c967027fe7862 /Doc | |
parent | b9f2ab9eaebfa3ad09a3dc3e3f6909500b36dc93 (diff) | |
download | cpython-3764fc295115e4eb83ffcd0b3d9a13c71bf2f20a.zip cpython-3764fc295115e4eb83ffcd0b3d9a13c71bf2f20a.tar.gz cpython-3764fc295115e4eb83ffcd0b3d9a13c71bf2f20a.tar.bz2 |
Fix doc build error
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/pyporting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst index 5f7cc34..7adeea7 100644 --- a/Doc/howto/pyporting.rst +++ b/Doc/howto/pyporting.rst @@ -350,7 +350,7 @@ Python 2 or 3 support. You may also want to use use the ``-bb`` flag with the Python 3 interpreter to trigger an exception when you are comparing bytes to strings or bytes to an int (the latter is available starting in Python 3.5). By default type-differing - comparisons simply return ``False``, but if you made a mistake in your +comparisons simply return ``False``, but if you made a mistake in your separation of text/binary data handling or indexing on bytes you wouldn't easily find the mistake. This flag will raise an exception when these kinds of comparisons occur, making the mistake much easier to track down. |