@@ -98,7 +98,10 @@ class PandasChangeWarning(Warning):
9898
9999 See Also
100100 --------
101- errors.Pandas4Warning : Class for deprecations to be enforced in pandas 4.0.
101+ errors.PandasPendingDeprecationWarning : Class for deprecations that will raise a
102+ PendingDeprecationWarning.
103+ errors.PandasDeprecationWarning : Class for deprecations that will raise a
104+ DeprecationWarning.
102105 errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
103106
104107 Examples
@@ -119,7 +122,9 @@ class PandasPendingDeprecationWarning(PandasChangeWarning, PendingDeprecationWar
119122
120123 See Also
121124 --------
122- errors.Pandas4Warning : Class for deprecations to be enforced in pandas 4.0.
125+ errors.PandasChangeWarning: Class for deprecations that will raise any warning.
126+ errors.PandasDeprecationWarning : Class for deprecations that will raise a
127+ DeprecationWarning.
123128 errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
124129
125130 Examples
@@ -135,7 +140,9 @@ class PandasDeprecationWarning(PandasChangeWarning, DeprecationWarning):
135140
136141 See Also
137142 --------
138- errors.Pandas4Warning : Class for deprecations to be enforced in pandas 4.0.
143+ errors.PandasChangeWarning: Class for deprecations that will raise any warning.
144+ errors.PandasPendingDeprecationWarning : Class for deprecations that will raise a
145+ PendingDeprecationWarning.
139146 errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
140147
141148 Examples
@@ -151,7 +158,11 @@ class PandasFutureWarning(PandasChangeWarning, FutureWarning):
151158
152159 See Also
153160 --------
154- errors.Pandas4Warning : Class for deprecations to be enforced in pandas 4.0.
161+ errors.PandasChangeWarning: Class for deprecations that will raise any warning.
162+ errors.PandasPendingDeprecationWarning : Class for deprecations that will raise a
163+ PendingDeprecationWarning.
164+ errors.PandasDeprecationWarning : Class for deprecations that will raise a
165+ DeprecationWarning.
155166
156167 Examples
157168 --------
@@ -166,6 +177,11 @@ class Pandas4Warning(PandasDeprecationWarning):
166177
167178 See Also
168179 --------
180+ errors.PandasChangeWarning: Class for deprecations that will raise any warning.
181+ errors.PandasPendingDeprecationWarning : Class for deprecations that will raise a
182+ PendingDeprecationWarning.
183+ errors.PandasDeprecationWarning : Class for deprecations that will raise a
184+ DeprecationWarning.
169185 errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
170186
171187 Examples
@@ -186,7 +202,11 @@ class Pandas5Warning(PandasPendingDeprecationWarning):
186202
187203 See Also
188204 --------
189- errors.Pandas4Warning : Class for deprecations to be enforced in pandas 4.0.
205+ errors.PandasChangeWarning: Class for deprecations that will raise any warning.
206+ errors.PandasPendingDeprecationWarning : Class for deprecations that will raise a
207+ PendingDeprecationWarning.
208+ errors.PandasDeprecationWarning : Class for deprecations that will raise a
209+ DeprecationWarning.
190210 errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
191211
192212 Examples
0 commit comments