# HG changeset patch # User Franz Glasner # Date 1741567509 -3600 # Node ID 6d1add815d14011fdfe31782f66bee48d35aaa43 # Parent 1371ceb6fad6a3d35f9cae39fd8fd34f81c2215e FIX: doc string for glob syntax rules diff -r 1371ceb6fad6 -r 6d1add815d14 cutils/util/glob.py --- a/cutils/util/glob.py Sun Mar 09 20:43:20 2025 +0100 +++ b/cutils/util/glob.py Mon Mar 10 01:45:09 2025 +0100 @@ -30,9 +30,9 @@ - The ``[ ]`` characters are a bracket expression that match a single character of a name component out of a set of characters. For example, ``[abc]`` matches "``a``", "``b``", or "``c``". The hyphen (``-``) may - be used to specify a range so ``'[^/]*'[a-z]`` specifies a range that matches + be used to specify a range so ``[a-z]`` specifies a range that matches from "``a``" to "``z``" (inclusive). These forms can be mixed so - ``[abce-g]`` matches "``a``", "``b``", "``c``", "``ey", "``f``" or + ``[abce-g]`` matches "``a``", "``b``", "``c``", "``e``", "``f``" or "``g``". If the character after the ``[`` is a ``!`` then it is used for negation