From bebcd6c7f3bb1fb7b7bbd7a39646d91f55b2edc0 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 23 Sep 2021 22:36:39 -0700 Subject: [PATCH] Fix docstring column wrapping. --- voussoirkit/pathclass.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/voussoirkit/pathclass.py b/voussoirkit/pathclass.py index fd9814c..867964f 100644 --- a/voussoirkit/pathclass.py +++ b/voussoirkit/pathclass.py @@ -479,13 +479,14 @@ def glob_many(patterns, files=None, directories=None): def glob_patternize(piece): ''' - Create a pattern like "[u]ser" from "user", forcing glob to look up the - correct path name, while guaranteeing that the only result will be the correct path. + Create a pattern like "[u]ser" from "user". This forces glob to look up the + correct path name, while guaranteeing that the only result will be + the correct path. Special cases are: `!` - because in glob syntax, [!x] tells glob to look for paths that don't contain - "x", and [!] is invalid syntax. + because in glob syntax, [!x] tells glob to look for paths that + don't contain "x", and [!] is invalid syntax. `[`, `]` because this starts a glob capture group