8000 Clinic regen · python/cpython@ae6d11b · GitHub
[go: up one dir, main page]

Skip to content

Commit ae6d11b

Browse files
committed
Clinic regen
1 parent 622ea64 commit ae6d11b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Python/bltinmodule.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ is the number of parent directories to search relative to the current module.
273273
static PyObject *
274274
builtin___import___impl(PyObject *module, PyObject *name, PyObject *globals,
275275
PyObject *locals, PyObject *fromlist, int level)
276-
/*[clinic end generated code: output=4febeda88a0cd245 input=35e9a6460412430f]*/
276+
/*[clinic end generated code: output=4febeda88a0cd245 input=73f4b960ea5b9dd6]*/
277277
{
278278
return PyImport_ImportModuleLevelObject(name, globals, locals,
279279
fromlist, level);
@@ -1516,7 +1516,7 @@ setattr(x, 'y', v) is equivalent to ``x.y = v``
15161516
static PyObject *
15171517
builtin_setattr_impl(PyObject *module, PyObject *obj, PyObject *name,
15181518
PyObject *value)
1519-
/*[clinic end generated code: output=dc2ce1d1add9acb4 input=bd2b7ca6875a1899]*/
1519+
/*[clinic end generated code: output=dc2ce1d1add9acb4 input=5e26417f2e8598d4]*/
15201520
{
15211521
if (PyObject_SetAttr(obj, name, value) != 0)
15221522
return NULL;
@@ -1538,7 +1538,7 @@ delattr(x, 'y') is equivalent to ``del x.y``
15381538

15391539
static PyObject *
15401540
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]*/
15421542
{
15431543
if (PyObject_SetAttr(obj, name, (PyObject *)NULL) != 0)
15441544
return NULL;

Python/clinic/bltinmodule.c.h

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
0