From 6da31c9deef1dbb001ebabc0c13377b0f44e7e7c Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Wed, 3 Oct 2018 00:10:41 +0100 Subject: [PATCH] docs: Remove unneeded backslash escapes Python 3.x was emitting a DeprecationWarning. AFAICT there has been no impact on the HTML rendering. --- mitogen/core.py | 2 +- mitogen/parent.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mitogen/core.py b/mitogen/core.py index d829d624..9aa95973 100644 --- a/mitogen/core.py +++ b/mitogen/core.py @@ -374,7 +374,7 @@ def io_op(func, *args): :returns: Tuple of `(return_value, disconnected)`, where `return_value` is the - return value of `func(\*args)`, and `disconnected` is :data:`True` if + return value of `func(*args)`, and `disconnected` is :data:`True` if disconnection was detected, otherwise :data:`False`. """ while True: diff --git a/mitogen/parent.py b/mitogen/parent.py index fe5e6889..c0d2d294 100644 --- a/mitogen/parent.py +++ b/mitogen/parent.py @@ -1256,7 +1256,7 @@ class CallChain(object): def call_async(self, fn, *args, **kwargs): """ - Arrange for `fn(\*args, \**kwargs)` to be invoked on the context's main + Arrange for `fn(*args, **kwargs)` to be invoked on the context's main thread. :param fn: