From: Richard Hajek Date: Mon, 24 Apr 2023 16:31:41 +0000 (+0200) Subject: Removed unnecessary escaping of asterisks (#103714) X-Git-Tag: v3.12.0b1~461 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=385d8d2b6438c7825006df6106dab41a95332a6a;p=thirdparty%2FPython%2Fcpython.git 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 --- diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 6187098a7520..0b4a4973cb4d 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