On 01/06/2017 05:03 AM, Steve D'Aprano wrote:
what do we call the vertical and horizontal line elements? I want to make them configurable, which means the user has to be able to pass an argument that specifies them. I have names for the individual components:XXX = namedtuple("XXX", "vline tee corner") default_YYY = XXX("│ ", "├─ ", "└─ ") bold_YYY = XXX("┃ ", "┣━ ", "┗━ ") ascii_YYY = XXX("| ", "|- ", "+- ") def draw_tree(tree, YYY=default_YYY): ... but what do I call XXX and YYY?
Looks like horizontal, vertical, and corner are as groups -- so I would call YYY "style" and XXX "default", "bold", and "ascii". -- ~Ethan~ -- https://mail.python.org/mailman/listinfo/python-list
