@@ -1252,7 +1252,7 @@ Return a copy of the array.
12521252
12531253static PyObject *
12541254array_array___deepcopy___impl (arrayobject * self , PyObject * unused )
1255- /*[clinic end generated code: output=703b4c412feaaf31 input=2405ecb4933748c4 ]*/
1255+ /*[clinic end generated code: output=703b4c412feaaf31 input=1a29f718f5b8a1dc ]*/
12561256{
12571257 return array_array___copy___impl (self );
12581258}
@@ -1528,7 +1528,7 @@ Return number of occurrences of v in the array.
15281528
15291529static PyObject *
15301530array_array_count_impl (arrayobject * self , PyObject * v )
1531- /*[clinic end generated code: output=93ead26a2affb739 input=d9bce9d65e39d1f5 ]*/
1531+ /*[clinic end generated code: output=93ead26a2affb739 input=c12c0042c1d0e27e ]*/
15321532{
15331533 Py_ssize_t count = 0 ;
15341534 Py_ssize_t i ;
@@ -1640,7 +1640,7 @@ Remove the first occurrence of v in the array.
16401640
16411641static PyObject *
16421642array_array_remove_impl (arrayobject * self , PyObject * v )
1643- /*[clinic end generated code: output=f2a24e288ecb2a35 input=0b1e5aed25590027 ]*/
1643+ /*[clinic end generated code: output=f2a24e288ecb2a35 input=78bef3fd40e62f7a ]*/
16441644{
16451645 Py_ssize_t i ;
16461646
@@ -1794,7 +1794,7 @@ Append new value v to the end of the array.
17941794
17951795static PyObject *
17961796array_array_append_impl (arrayobject * self , PyObject * v )
1797- /*[clinic end generated code: output=2f1e8cbad70c2a8b input=0b98d9d78e78f0fa ]*/
1797+ /*[clinic end generated code: output=2f1e8cbad70c2a8b input=9cdd897c66a40c3f ]*/
17981798{
17991799 if (ins1 (self , Py_SIZE (self ), v ) != 0 )
18001800 return NULL ;
@@ -2022,7 +2022,7 @@ Append items to array from list.
20222022
20232023static PyObject *
20242024array_array_fromlist_impl (arrayobject * self , PyObject * list )
2025- /*[clinic end generated code: output=6c23733a68dd68df input=be2605a96c49680f ]*/
2025+ /*[clinic end generated code: output=6c23733a68dd68df input=c7c056aaf85d997a ]*/
20262026{
20272027 Py_ssize_t n ;
20282028
0 commit comments