diff options
author | Richard Hajek <richard.m.hajek@gmail.com> | 2023-04-24 16:31:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-24 16:31:41 (GMT) |
commit | 385d8d2b6438c7825006df6106dab41a95332a6a (patch) | |
tree | 21440e5a9d99587234518f1745a84a849f9d555c | |
parent | 4996efb09e2644157402b6b02aa24b45f5163050 (diff) | |
download | cpython-385d8d2b6438c7825006df6106dab41a95332a6a.zip cpython-385d8d2b6438c7825006df6106dab41a95332a6a.tar.gz cpython-385d8d2b6438c7825006df6106dab41a95332a6a.tar.bz2 |
Removed unnecessary escaping of asterisks (#103714)
Removed unnecessary escaping of asterisks, as visible both on GitHub and in https://docs.python.org/3/library/decimal.html#decimal.localcontext
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
-rw-r--r-- | Doc/library/decimal.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 6187098..0b4a497 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -926,7 +926,7 @@ Each thread has its own current context which is accessed or changed using the You can also use the :keyword:`with` statement and the :func:`localcontext` function to temporarily change the active context. -.. function:: localcontext(ctx=None, \*\*kwargs) +.. function:: localcontext(ctx=None, **kwargs) Return a context manager that will set the current context for the active thread to a copy of *ctx* on entry to the with-statement and restore the previous context |