Skip to content

Commit d8089d5

Browse files
committed
Address review
1 parent a886d64 commit d8089d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Modules/clinic/posixmodule.c.h

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

Modules/posixmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5614,7 +5614,7 @@ os__path_isjunction_impl(PyObject *module, path_t *path)
56145614
/*[clinic input]
56155615
os._path_splitroot_ex
56165616
5617-
p as path: path_t(make_wide=True, nonstrict=True),
5617+
path: path_t(make_wide=True, nonstrict=True),
56185618
/
56195619
56205620
Split a pathname into drive, root and tail.
@@ -5624,7 +5624,7 @@ The tail contains anything after the root.
56245624

56255625
static PyObject *
56265626
os__path_splitroot_ex_impl(PyObject *module, path_t *path)
5627-
/*[clinic end generated code: output=4b0072b6cdf4b611 input=ccd3dfece9b2d79a]*/
5627+
/*[clinic end generated code: output=4b0072b6cdf4b611 input=4ac47b394d68bd21]*/
56285628
{
56295629
Py_ssize_t drvsize, rootsize;
56305630
PyObject *drv = NULL, *root = NULL, *tail = NULL, *result = NULL;

0 commit comments

Comments
 (0)