From 63ace0b8bff4725781b09471da3e8811c51a4337 Mon Sep 17 00:00:00 2001 From: jmcb Date: Sat, 24 Feb 2024 22:58:18 +0000 Subject: [PATCH] Fix reference to string.ascii_letters (#544) --- docs/HowToUsePyparsing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/HowToUsePyparsing.rst b/docs/HowToUsePyparsing.rst index bc5da5b3..e38a2df6 100644 --- a/docs/HowToUsePyparsing.rst +++ b/docs/HowToUsePyparsing.rst @@ -1299,7 +1299,7 @@ Helper parse actions Common string and token constants --------------------------------- -- ``alphas`` - same as ``string.letters`` +- ``alphas`` - same as ``string.ascii_letters`` - ``nums`` - same as ``string.digits``