Issue #19795: Mark up True and False as literal text instead of bold.
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
index f271d73..4ce6835 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -695,7 +695,7 @@
 
 * ``'store_true'`` and ``'store_false'`` - These are special cases of
   ``'store_const'`` using for storing the values ``True`` and ``False``
-  respectively.  In addition, they create default values of *False* and *True*
+  respectively.  In addition, they create default values of ``False`` and ``True``
   respectively.  For example::
 
     >>> parser = argparse.ArgumentParser()