From: Sergey Matveev Date: Sat, 8 Dec 2018 15:56:33 +0000 (+0300) Subject: Remove trailing dot in docstring X-Git-Tag: 4.5~2 X-Git-Url: http://www.git.cypherpunks.ru/?p=pyderasn.git;a=commitdiff_plain;h=31fe69135e96d6cca5410168e92abfc55eda5197 Remove trailing dot in docstring --- diff --git a/pyderasn.py b/pyderasn.py index 4a9684f..aa91b04 100755 --- a/pyderasn.py +++ b/pyderasn.py @@ -1034,7 +1034,7 @@ class Obj(object): :param int offset: initial data's offset :param bool leavemm: do we need to leave memoryview of remaining data as is, or convert it to bytes otherwise - :param ctx: optional :ref:`context ` governing decoding process. + :param ctx: optional :ref:`context ` governing decoding process :param tag_only: decode only the tag, without length and contents (used only in Choice and Set structures, trying to determine if tag satisfies the scheme) @@ -4319,8 +4319,7 @@ def get_def_by_path(defines_by_path, sub_decode_path): def abs_decode_path(decode_path, rel_path): """Create an absolute decode path from current and relative ones - :param decode_path: current decode path, starting point. - Tuple of strings + :param decode_path: current decode path, starting point. Tuple of strings :param rel_path: relative path to ``decode_path``. Tuple of strings. If first tuple's element is "/", then treat it as an absolute path, ignoring ``decode_path`` as