Message289937
There is already an existing public C API get retrieve original program arguments *as text*:
/* Make the *original* argc/argv available to other modules.
This is rare, but it is needed by the secureware extension. */
void
Py_GetArgcArgv(int *argc, wchar_t ***argv)
{
*argc = orig_argc;
*argv = orig_argv;
}
Are you talking about exposing these arguments at the Python level? |
|
| Date |
User |
Action |
Args |
| 2017-03-21 14:04:55 | vstinner | set | recipients:
+ vstinner, barry, ncoghlan, jwilk, steven.daprano |
| 2017-03-21 14:04:54 | vstinner | set | messageid: <[email protected]> |
| 2017-03-21 14:04:54 | vstinner | link | issue29857 messages |
| 2017-03-21 14:04:54 | vstinner | create | |
|