@@ -98,7 +98,10 @@ class PandasChangeWarning(Warning):
98
98
99
99
See Also
100
100
--------
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.
102
105
errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
103
106
104
107
Examples
@@ -119,7 +122,9 @@ class PandasPendingDeprecationWarning(PandasChangeWarning, PendingDeprecationWar
119
122
120
123
See Also
121
124
--------
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.
123
128
errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
124
129
125
130
Examples
@@ -135,7 +140,9 @@ class PandasDeprecationWarning(PandasChangeWarning, DeprecationWarning):
135
140
136
141
See Also
137
142
--------
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.
139
146
errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
140
147
141
148
Examples
@@ -151,7 +158,11 @@ class PandasFutureWarning(PandasChangeWarning, FutureWarning):
151
158
152
159
See Also
153
160
--------
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.
155
166
156
167
Examples
157
168
--------
@@ -166,6 +177,11 @@ class Pandas4Warning(PandasDeprecationWarning):
166
177
167
178
See Also
168
179
--------
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.
169
185
errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
170
186
171
187
Examples
@@ -186,7 +202,11 @@ class Pandas5Warning(PandasPendingDeprecationWarning):
186
202
187
203
See Also
188
204
--------
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.
190
210
errors.PandasFutureWarning : Class for deprecations that will raise a FutureWarning.
191
211
192
212
Examples
0 commit comments