From: Scott Gasch Date: Mon, 31 Oct 2022 22:18:53 +0000 (-0700) Subject: Doc updates to argparse_utils.py. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=97a27f5db80666ab0e8e4c613ef9b67a4c80d5be;p=pyutils.git Doc updates to argparse_utils.py. --- diff --git a/src/pyutils/argparse_utils.py b/src/pyutils/argparse_utils.py index ccc49fc..765f30a 100644 --- a/src/pyutils/argparse_utils.py +++ b/src/pyutils/argparse_utils.py @@ -330,7 +330,8 @@ def valid_date(txt: str) -> datetime.date: .. note:: dates like 'next wednesday' work fine, they are just hard to doctest for without knowing when the testcase will be - executed... + executed... See :py:mod:`pyutils.datetimes.dateparse_utils` + for other examples of usable expressions. >>> valid_date('next wednesday') # doctest: +ELLIPSIS -ANYTHING-