diff options
author | Raymond Hettinger <python@rcn.com> | 2015-11-24 05:00:45 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-11-24 05:00:45 (GMT) |
commit | d2f0726f86d5d2b2e88100996d765d6b4d37d2c9 (patch) | |
tree | 3c8a6b55ea31f0730e7c01907024aeb5a7d4b825 /Lib/collections.py | |
parent | 5fda2f6fb713b9bf76a1918278018a5e3feaa2d1 (diff) | |
download | cpython-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.py | 2 |
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 |