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.
This commit is contained in:
Nikita Sobolev 2020-03-11 03:32:15 +03:00 committed by GitHub
parent 4e53abb0f4
commit bd87a7fda0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@
'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