summaryrefslogtreecommitdiff
path: root/Doc/reference/datamodel.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-10 10:44:25 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-10-10 10:44:25 +0000
commit84835ab1cb2a8ccfeeb4474d39130d972a3c563d (patch)
tree20902bead4bcb320b8def5259b3c4f239e9251ba /Doc/reference/datamodel.rst
parentf26441609310c12826fe4b5bc896aafafa268763 (diff)
parentd21e0b52f1421e253ecdc583faf5743133cac605 (diff)
downloadcpython-git-84835ab1cb2a8ccfeeb4474d39130d972a3c563d.tar.gz
Issue #25161: Merge full stops from 3.4 into 3.5
Diffstat (limited to 'Doc/reference/datamodel.rst')
-rw-r--r--Doc/reference/datamodel.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index e1d71b8115..e5e25a83d8 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1320,7 +1320,7 @@ Basic customization
object's :meth:`__hash__` must interoperate on builds of different bit
sizes, be sure to check the width on all supported builds. An easy way
to do this is with
- ``python -c "import sys; print(sys.hash_info.width)"``
+ ``python -c "import sys; print(sys.hash_info.width)"``.
If a class does not define an :meth:`__eq__` method it should not define a
:meth:`__hash__` operation either; if it defines :meth:`__eq__` but not