From 7a50cc167c9e6785ecf46aa34b8c4b65268a05a6 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Thu, 14 Jul 2022 17:18:19 -0400 Subject: [PATCH] Do not use "Tests" sections in classes --- docs/conf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ee6db1ef9..1f78df1a1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -238,8 +238,8 @@ (r"method:.*\.__[A-Za-z,_]*__", "Special methods"), (r"method:.*\.__(init|new)__", "Constructors"), (r"method:.*\.__(str|repr)__", "String representation"), - (r"method:.*\.is_[a-z,_]*", "Tests"), - (r"property:.*\.is_[a-z,_]*", "Tests"), + # (r"method:.*\.is_[a-z,_]*", "Tests"), + # (r"property:.*\.is_[a-z,_]*", "Tests"), ] python_apigen_default_order = [ ("class:.*", 10), @@ -252,8 +252,8 @@ (r"method:.*\.__[A-Za-z,_]*__", 23), (r"method:.*\.__(init|new)__", 20), (r"method:.*\.__(str|repr)__", 21), - (r"method:.*\.is_[a-z,_]*", 31), - (r"property:.*\.is_[a-z,_]*", 32), + # (r"method:.*\.is_[a-z,_]*", 31), + # (r"property:.*\.is_[a-z,_]*", 32), ] python_apigen_order_tiebreaker = "alphabetical" python_apigen_case_insensitive_filesystem = False