diff options
author | Raymond Hettinger <python@rcn.com> | 2015-11-24 05:03:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-11-24 05:03:09 (GMT) |
commit | c3f7d1753f2021e7ba00daf67fd273950070d2f3 (patch) | |
tree | 64d65f51fff18a197822bda82408e4c3bf2cc857 /Lib/collections | |
parent | c9c3dd87c1235dfaae49602ec7ba279b6d6be9a3 (diff) | |
download | cpython-c3f7d1753f2021e7ba00daf67fd273950070d2f3.zip cpython-c3f7d1753f2021e7ba00daf67fd273950070d2f3.tar.gz cpython-c3f7d1753f2021e7ba00daf67fd273950070d2f3.tar.bz2 |
Fix non-ascii character
Diffstat (limited to 'Lib/collections')
-rw-r--r-- | Lib/collections/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 5b47e60..091e5d3 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.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 |