Changeset 72c1857 in trunk
- Timestamp:
- 2023-07-19T15:54:18Z (2 years ago)
- Branches:
- master
- Children:
- 911b542
- Parents:
- c1c0b60
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/scripts/create_node.py ¶
rc1c0b60 r72c1857 268 268 right: Optional[ListenerConfig], 269 269 ) -> 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 """ 270 277 if left is None or right is None: 271 278 return None
Note: See TracChangeset
for help on using the changeset viewer.