summaryrefslogtreecommitdiffstats
path: root/Lib/collections.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-11-24 05:00:45 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-11-24 05:00:45 (GMT)
commitd2f0726f86d5d2b2e88100996d765d6b4d37d2c9 (patch)
tree3c8a6b55ea31f0730e7c01907024aeb5a7d4b825 /Lib/collections.py
parent5fda2f6fb713b9bf76a1918278018a5e3feaa2d1 (diff)
downloadcpython-d2f0726f86d5d2b2e88100996d765d6b4d37d2c9.zip
cpython-d2f0726f86d5d2b2e88100996d765d6b4d37d2c9.tar.gz
cpython-d2f0726f86d5d2b2e88100996d765d6b4d37d2c9.tar.bz2
Fix non-ascii character
Diffstat (limited to 'Lib/collections.py')
-rw-r--r--Lib/collections.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections.py b/Lib/collections.py
index 66e8a24..7ecfd46 100644
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -1,5 +1,5 @@
'''This module implements specialized container datatypes providing
-alternatives to Python’s general purpose built-in containers, dict,
+alternatives to Python's general purpose built-in containers, dict,
list, set, and tuple.
* namedtuple factory function for creating tuple subclasses with named fields