diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-11-21 00:15:20 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-11-21 00:15:20 (GMT) |
commit | 357ed2e57703a92faaae1236813a6d3e2b3d910f (patch) | |
tree | 0d308e1ecdf1c92698701af950aec86f6e6aec17 /Doc/howto/cporting.rst | |
parent | b24569a19db79f031045747f55cb5b5fff7374e1 (diff) | |
download | cpython-357ed2e57703a92faaae1236813a6d3e2b3d910f.zip cpython-357ed2e57703a92faaae1236813a6d3e2b3d910f.tar.gz cpython-357ed2e57703a92faaae1236813a6d3e2b3d910f.tar.bz2 |
Change double hyphens (en dashes) to em (longer) dashes
Diffstat (limited to 'Doc/howto/cporting.rst')
-rw-r--r-- | Doc/howto/cporting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/cporting.rst b/Doc/howto/cporting.rst index 27e7e6f..7cacb0a 100644 --- a/Doc/howto/cporting.rst +++ b/Doc/howto/cporting.rst @@ -95,7 +95,7 @@ long/int Unification -------------------- Python 3 has only one integer type, :func:`int`. But it actually -corresponds to Python 2's :func:`long` type--the :func:`int` type +corresponds to Python 2's :func:`long` type—the :func:`int` type used in Python 2 was removed. In the C-API, ``PyInt_*`` functions are replaced by their ``PyLong_*`` equivalents. |