From: Nikita Sobolev Date: Wed, 11 Mar 2020 00:32:15 +0000 (+0300) Subject: Updates functools.py with consistent quotes (GH-18825) X-Git-Tag: v3.9.0a5~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd87a7fda07275e868c8e0d4fdd091bf9d6394a5;p=thirdparty%2FPython%2Fcpython.git Updates functools.py with consistent quotes (GH-18825) I have noticed that `'` quotes are used everywhere except this particular case, which was introduced in https://github.com/python/cpython/pull/18726 So, this is a trivial fix to enforce better consistency. --- diff --git a/Lib/functools.py b/Lib/functools.py index e230175e56ca..70fcec5a8f6d 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -13,7 +13,7 @@ __all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES', 'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'TopologicalSorter', 'CycleError', 'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod', - "cached_property"] + 'cached_property'] from abc import get_cache_token from collections import namedtuple