From 2377295160adeb6fad87588da2d7c80c16d3ab5f Mon Sep 17 00:00:00 2001 From: Kerim Kabirov Date: Sat, 28 Sep 2024 12:06:28 +0200 Subject: [PATCH] test doctest speed --- Doc/howto/enum.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/enum.rst b/Doc/howto/enum.rst index 66929b4104d8de..821f3eb9a2fa13 100644 --- a/Doc/howto/enum.rst +++ b/Doc/howto/enum.rst @@ -8,7 +8,7 @@ Enum HOWTO .. currentmodule:: enum -An :class:`Enum` is a set of symbolic names bound to unique values. They are +An :class:`Enum` is a set of symbolic names bound to unique values. They are similar to global variables, but they offer a more useful :func:`repr`, grouping, type-safety, and a few other features.