@@ -926,8 +926,11 @@ PyObject_HasAttrString(PyObject *v, const char *name)
926
926
return ok ;
927
927
}
928
928
929
- int
930
- PyObject_SetAttrString (PyObject * v , const char * name , PyObject * w )
929
+ // Forward declaration
930
+ static int object_set_attr (PyObject * v , PyObject * name , PyObject * value );
931
+
932
+ static int
933
+ object_set_attr_string (PyObject * v , const char * name , PyObject * w )
931
934
{
932
935
PyObject * s ;
933
936
int res ;
@@ -937,15 +940,32 @@ PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
937
940
s = PyUnicode_InternFromString (name );
938
941
if (s == NULL )
939
942
return -1 ;
940
- res = PyObject_SetAttr (v , s , w );
943
+ res = object_set_attr (v , s , w );
941
944
Py_XDECREF (s );
942
945
return res ;
943
946
}
944
947
948
+ int
949
+ PyObject_SetAttrString (PyObject * v , const char * name , PyObject * w )
950
+ {
951
+ if (w == NULL
952
+ #ifndef Py_DEBUG
953
+ && _Py_GetConfig ()-> dev_mode
954
+ #endif
955
+ && PyErr_WarnEx (PyExc_DeprecationWarning ,
956
+ "PyObject_SetAttrString(v, name, NULL) is deprecated: "
957
+ "use PyObject_DelAttrString(v, name) instead" ,
958
+ 1 ) < 0 )
959
+ {
960
+ return -1 ;
961
+ }
962
+ return object_set_attr_string (v , name , w );
963
+ }
964
+
945
965
int
946
966
PyObject_DelAttrString (PyObject * v , const char * name )
947
967
{
948
- return PyObject_SetAttrString (v , name , NULL );
968
+ return object_set_attr_string (v , name , NULL );
949
969
}
950
970
951
971
int
@@ -1156,8 +1176,8 @@ PyObject_HasAttr(PyObject *v, PyObject *name)
1156
1176
return 1 ;
1157
1177
}
1158
1178
1159
- int
1160
- PyObject_SetAttr (PyObject * v , PyObject * name , PyObject * value )
1179
+ static int
1180
+ object_set_attr (PyObject * v , PyObject * name , PyObject * value )
1161
1181
{
1162
1182
PyTypeObject * tp = Py_TYPE (v );
1163
1183
int err ;
@@ -1205,10 +1225,27 @@ PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
1205
1225
return -1 ;
1206
1226
}
1207
1227
1228
+ int
1229
+ PyObject_SetAttr (PyObject * v , PyObject * name , PyObject * value )
1230
+ {
1231
+ if (value == NULL
1232
+ #ifndef Py_DEBUG
1233
+ && _Py_GetConfig ()-> dev_mode
1234
+ #endif
1235
+ && PyErr_WarnEx (PyExc_DeprecationWarning ,
1236
+ "PyObject_SetAttr(v, name, NULL) is deprecated: "
1237
+ "use PyObject_DelAttr(v, name) instead" ,
1238
+ 1 ) < 0 )
1239
+ {
1240
+ return -1 ;
1241
+ }
1242
+ return object_set_attr (v , name , value );
1243
+ }
1244
+
1208
1245
int
1209
1246
PyObject_DelAttr (PyObject * v , PyObject * name )
1210
1247
{
1211
- return PyObject_SetAttr (v , name , NULL );
1248
+ return object_set_attr (v , name , NULL );
1212
1249
}
1213
1250
1214
1251
PyObject * *
0 commit comments