Changeset 72c1857 in trunk


Ignore:
Timestamp:
2023-07-19T15:54:18Z (2 years ago)
Author:
Jean-Paul Calderone <exarkun@…>
Branches:
master
Children:
911b542
Parents:
c1c0b60
Message:

another docstring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/allmydata/scripts/create_node.py

    rc1c0b60 r72c1857  
    268268        right: Optional[ListenerConfig],
    269269) -> Optional[ListenerConfig]:
     270    """
     271    Merge two listener configurations into one configuration representing
     272    both of them.
     273
     274    If either is ``None`` then the result is ``None``.  This supports the
     275    "disable listeners" functionality.
     276    """
    270277    if left is None or right is None:
    271278        return None
Note: See TracChangeset for help on using the changeset viewer.