From 0269b81319da9f32ec0c0ddee181a4121c1bb315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9=20=D0=92=D0=BB=D0=B0?= =?UTF-8?q?=D0=B4=D0=B8=D0=BC=D0=B8=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Sat, 20 Feb 2016 17:49:31 +0300 Subject: [PATCH] docs fix --- src/tox.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tox.py b/src/tox.py index ba2e8c5..4e36578 100644 --- a/src/tox.py +++ b/src/tox.py @@ -47,7 +47,7 @@ class Tox(object): operate correctly. :param tox_options: An options object. If this parameter is None, the default options are used. - :param tox_pointer: Tox instance pointer (c_void_p). If this parameter is not None, tox_options will be ignored. + :param tox_pointer: Tox instance pointer. If this parameter is not None, tox_options will be ignored. """ if tox_pointer is not None: self._tox_pointer = tox_pointer @@ -95,7 +95,7 @@ class Tox(object): If options is NULL, this function has no effect. - :param tox_options: A POINTER(ToxOptions) to options object to be filled with default options. + :param tox_options: A pointer to options object to be filled with default options. """ Tox.libtoxcore.tox_options_default(tox_options) @@ -108,7 +108,7 @@ class Tox(object): Objects returned from this function must be freed using the tox_options_free function. - :return: A POINTER(ToxOptions) to new ToxOptions object with default options or NULL on failure. + :return: A pointer to new ToxOptions object with default options or NULL on failure. """ tox_err_options_new = c_int() Tox.libtoxcore.tox_options_new.restype = POINTER(ToxOptions) @@ -126,7 +126,7 @@ class Tox(object): Passing a pointer that was not returned by tox_options_new results in undefined behaviour. - :param tox_options: A POINTER(ToxOptions) to new ToxOptions object + :param tox_options: A pointer to new ToxOptions object """ Tox.libtoxcore.tox_options_free(tox_options)