From d2f0726f86d5d2b2e88100996d765d6b4d37d2c9 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 23 Nov 2015 21:00:45 -0800 Subject: [PATCH] Fix non-ascii character --- Lib/collections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/collections.py b/Lib/collections.py index 66e8a24da1..7ecfd4631e 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 -- 2.50.1