File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ Release 7.3.5 (in development)
4
4
Bugs fixed
5
5
----------
6
6
7
+ * #12295: Re-export various objects from ``sphinx.domains.python._object ``
8
+ in ``sphinx.domains.python ``.
9
+ Patch by Jacob Chesslo and Adam Turner.
7
10
8
11
Release 7.3.4 (released Apr 17, 2024)
9
12
=====================================
Original file line number Diff line number Diff line change 36
36
from sphinx .environment import BuildEnvironment
37
37
from sphinx .util .typing import ExtensionMetadata , OptionSpec
38
38
39
+ # re-export objects for backwards compatibility
40
+ # xref https://github.com/sphinx-doc/sphinx/issues/12295
41
+ from sphinx .domains .python ._object import ( # NoQA: F401
42
+ PyField ,
43
+ PyGroupedField ,
44
+ PyTypedField ,
45
+ PyXrefMixin ,
46
+ py_sig_re ,
47
+ )
48
+
39
49
logger = logging .getLogger (__name__ )
40
50
41
51
pairindextypes = {
You can’t perform that action at this time.
0 commit comments