@@ -273,7 +273,7 @@ is the number of parent directories to search relative to the current module.
273
273
static PyObject *
274
274
builtin___import___impl (PyObject * module , PyObject * name , PyObject * globals ,
275
275
PyObject * locals , PyObject * fromlist , int level )
276
- /*[clinic end generated code: output=4febeda88a0cd245 input=35e9a6460412430f ]*/
276
+ /*[clinic end generated code: output=4febeda88a0cd245 input=73f4b960ea5b9dd6 ]*/
277
277
{
278
278
return PyImport_ImportModuleLevelObject (name , globals , locals ,
279
279
fromlist , level );
@@ -1516,7 +1516,7 @@ setattr(x, 'y', v) is equivalent to ``x.y = v``
1516
1516
static PyObject *
1517
1517
builtin_setattr_impl (PyObject * module , PyObject * obj , PyObject * name ,
1518
1518
PyObject * value )
1519
- /*[clinic end generated code: output=dc2ce1d1add9acb4 input=bd2b7ca6875a1899 ]*/
1519
+ /*[clinic end generated code: output=dc2ce1d1add9acb4 input=5e26417f2e8598d4 ]*/
1520
1520
{
1521
1521
if (PyObject_SetAttr (obj , name , value ) != 0 )
1522
1522
return NULL ;
@@ -1538,7 +1538,7 @@ delattr(x, 'y') is equivalent to ``del x.y``
1538
1538
1539
1539
static PyObject *
1540
1540
builtin_delattr_impl (PyObject * module , PyObject * obj , PyObject * name )
1541
- /*[clinic end generated code: output=85134bc58dff79fa input=db16685d6b4b9410 ]*/
1541
+ /*[clinic end generated code: output=85134bc58dff79fa input=164865623abe7216 ]*/
1542
1542
{
1543
1543
if (PyObject_SetAttr (obj , name , (PyObject * )NULL ) != 0 )
1544
1544
return NULL ;
0 commit comments