From 4e78430ef452d6afbf631e5a0a77a7c84a839954 Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Fri, 30 Aug 2019 23:28:48 +0300 Subject: [PATCH] Add documentation for children --- certbot-apache/certbot_apache/interfaces.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/certbot-apache/certbot_apache/interfaces.py b/certbot-apache/certbot_apache/interfaces.py index af39f5936..919aa7e93 100644 --- a/certbot-apache/certbot_apache/interfaces.py +++ b/certbot-apache/certbot_apache/interfaces.py @@ -319,6 +319,14 @@ class BlockNode(DirectiveNode): The applicable parameters are dependent on the underlying configuration language and its grammar. + BlockNode objects should have the following attributes in addition to + the ones described in DirectiveNode: + + # Tuple of direct children of this BlockNode object. The order of children + # in this tuple retain the order of elements in the parsed configuration + # block. + children: Tuple[ParserNode, ...] + """ @abc.abstractmethod