>>> import os
>>> help(os.execv)
Help on built-in function execv in module posix:
execv(path, argv, /)
Execute an executable path with arguments,
replacing current process.
path
Path of executable file.
argv
Tuple or list of strings.
so it's easily user-visible.
I've always found it a little strange that the signatures for
functions using Py_ArgParseTuple() had this / in them that wasn't
Python syntax. On the other hand, it accurately reflects the fact
that these functions have signatures that you can't write in Python.
(And, FWIW, I wasn't the person who added the code that made "/"
start showing up in the text representations of signatures. I was
waffling on it, then someone else JFDI, to quote Barry.)
/arry