sync_struct: docstring cleanup

This commit is contained in:
Sebastien Bourdeauducq 2015-07-17 18:53:43 +02:00
parent 39c6bc940c
commit 4907991ea3
1 changed files with 1 additions and 6 deletions

View File

@ -8,7 +8,6 @@ describing each modification made to the structure (*mods*).
Structures must be PYON serializable and contain only lists, dicts, and Structures must be PYON serializable and contain only lists, dicts, and
immutable types. Lists and dicts can be nested arbitrarily. immutable types. Lists and dicts can be nested arbitrarily.
""" """
import asyncio import asyncio
@ -23,9 +22,7 @@ _init_string = b"ARTIQ sync_struct\n"
def process_mod(target, mod): def process_mod(target, mod):
"""Apply a *mod* to the target, mutating it. """Apply a *mod* to the target, mutating it."""
"""
for key in mod["path"]: for key in mod["path"]:
target = getitem(target, key) target = getitem(target, key)
action = mod["action"] action = mod["action"]
@ -134,7 +131,6 @@ class Notifier:
:param backing_struct: Structure to encapsulate. For convenience, it :param backing_struct: Structure to encapsulate. For convenience, it
also becomes available as the ``read`` property of the ``Notifier``. also becomes available as the ``read`` property of the ``Notifier``.
""" """
def __init__(self, backing_struct, root=None, path=[]): def __init__(self, backing_struct, root=None, path=[]):
self.read = backing_struct self.read = backing_struct
@ -203,7 +199,6 @@ class Publisher(AsyncioServer):
:param notifiers: A dictionary containing the notifiers to associate with :param notifiers: A dictionary containing the notifiers to associate with
the ``Publisher``. The keys of the dictionary are the names of the the ``Publisher``. The keys of the dictionary are the names of the
notifiers to be used with ``Subscriber``. notifiers to be used with ``Subscriber``.
""" """
def __init__(self, notifiers): def __init__(self, notifiers):
AsyncioServer.__init__(self) AsyncioServer.__init__(self)