File tree 2 files changed +16
-5
lines changed
2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,17 @@ def setup(app):
82
82
# See https://sphinx-hoverxref.readthedocs.io/en/latest/configuration.html
83
83
hoverxref_auto_ref = True
84
84
hoverxref_domains = ["py" ]
85
+ hoverxref_role_types = {
86
+ "attr" : "tooltip" ,
87
+ "class" : "tooltip" ,
88
+ "const" : "tooltip" ,
89
+ "exc" : "tooltip" ,
90
+ "func" : "tooltip" ,
91
+ "meth" : "tooltip" ,
92
+ "mod" : "tooltip" ,
93
+ "obj" : "tooltip" ,
94
+ "ref" : "tooltip" ,
95
+ }
85
96
86
97
intersphinx_mapping = {
87
98
"python" : ("https://docs.python.org/3/" , None ),
Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ There are separate pages for :doc:`django` and :doc:`numpy`.
28
28
.. automodule :: hypothesis.extra.dpcontracts
29
29
:members:
30
30
31
- .. tip ::
31
+ .. tip ::
32
32
33
- For new projects, we recommend using either :pypi: `deal ` or :pypi: `icontract `
34
- and :pypi: `icontract-hypothesis ` over :pypi: `dpcontracts `.
35
- They're generally more powerful tools for design-by-contract programming,
36
- and have substantially nicer Hypothesis integration too!
33
+ For new projects, we recommend using either :pypi: `deal ` or :pypi: `icontract `
34
+ and :pypi: `icontract-hypothesis ` over :pypi: `dpcontracts `.
35
+ They're generally more powerful tools for design-by-contract programming,
36
+ and have substantially nicer Hypothesis integration too!
37
37
38
38
.. automodule :: hypothesis.extra.lark
39
39
:members:
You can’t perform that action at this time.
0 commit comments