summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2020-03-11 00:32:15 (GMT)
committerGitHub <noreply@github.com>2020-03-11 00:32:15 (GMT)
commitbd87a7fda07275e868c8e0d4fdd091bf9d6394a5 (patch)
tree74802c58abbac2e922bb4967bbc2a1e1e554864f
parent4e53abb0f4773e1cce68a4f41ddbb43e74364c5f (diff)
downloadcpython-bd87a7fda07275e868c8e0d4fdd091bf9d6394a5.zip
cpython-bd87a7fda07275e868c8e0d4fdd091bf9d6394a5.tar.gz
cpython-bd87a7fda07275e868c8e0d4fdd091bf9d6394a5.tar.bz2
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.
-rw-r--r--Lib/functools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/functools.py b/Lib/functools.py
index e230175..70fcec5 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