@@ -3126,12 +3126,12 @@ _PyDict_MergeEx(PyObject *a, PyObject *b, int override)
3126
3126
/*[clinic input]
3127
3127
dict.copy
3128
3128
3129
- Returns a shallow copy of D .
3129
+ Returns a shallow copy of the dict .
3130
3130
[clinic start generated code]*/
3131
3131
3132
3132
static PyObject *
3133
3133
dict_copy_impl (PyDictObject * self )
3134
- /*[clinic end generated code: output=ffb782cf970a5c39 input=6d9903c1b6362e32 ]*/
3134
+ /*[clinic end generated code: output=ffb782cf970a5c39 input=c3478619cd5ae21d ]*/
3135
3135
{
3136
3136
return PyDict_Copy ((PyObject * )self );
3137
3137
}
@@ -3706,12 +3706,12 @@ _PyDict_KeysSize(PyDictKeysObject *keys)
3706
3706
/*[clinic input]
3707
3707
dict.__sizeof__
3708
3708
3709
- Returns size of D in memory, in bytes.
3709
+ Returns size of the dict in memory, in bytes.
3710
3710
[clinic start generated code]*/
3711
3711
3712
3712
static PyObject *
3713
3713
dict___sizeof___impl (PyDictObject * self )
3714
- /*[clinic end generated code: output=44279379b3824bda input=33b3550475672efd ]*/
3714
+ /*[clinic end generated code: output=44279379b3824bda input=4390a7fef5801970 ]*/
3715
3715
{
3716
3716
return PyLong_FromSsize_t (_PyDict_SizeOf (self ));
3717
3717
}
@@ -5247,12 +5247,12 @@ PyTypeObject PyDictKeys_Type = {
5247
5247
/*[clinic input]
5248
5248
dict.keys
5249
5249
5250
- Returns a set-like object providing a view on D 's keys.
5250
+ Returns a set-like object providing a view on the dict 's keys.
5251
5251
[clinic start generated code]*/
5252
5252
5253
5253
static PyObject *
5254
5254
dict_keys_impl (PyDictObject * self )
5255
- /*[clinic end generated code: output=aac2830c62990358 input=26448b0710052252 ]*/
5255
+ /*[clinic end generated code: output=aac2830c62990358 input=7f7942e4dbbc4cdf ]*/
5256
5256
{
5257
5257
return _PyDictView_New ((PyObject * )self , & PyDictKeys_Type );
5258
5258
}
@@ -5449,12 +5449,12 @@ PyTypeObject PyDictValues_Type = {
5449
5449
/*[clinic input]
5450
5450
dict.values
5451
5451
5452
- Returns an object providing a view on D 's values.
5452
+ Returns an object providing a view on the dict 's values.
5453
5453
[clinic start generated code]*/
5454
5454
5455
5455
static PyObject *
5456
5456
dict_values_impl (PyDictObject * self )
5457
- /*[clinic end generated code: output=ce9f2e9e8a959dd4 input=53354b69fc077e0d ]*/
5457
+ /*[clinic end generated code: output=ce9f2e9e8a959dd4 input=ccd5c09c261cd554 ]*/
5458
5458
{
5459
5459
return _PyDictView_New ((PyObject * )self , & PyDictValues_Type );
5460
5460
}
0 commit comments