Issue15577
Created on 2012-08-07 20:38 by nordaux, last changed 2022-04-11 14:57 by admin. This issue is now closed.
| Messages (7) | |||
|---|---|---|---|
| msg167639 - (view) | Author: nordaux (nordaux) | Date: 2012-08-07 20:38 | |
I have found out certain peculiarity of interpreter in case it is embedded.
There is no way to reference to the real parameters argv, argc of main process from embedded python's C extensions.
When python is not embedded, it is task of function Py_Main, which sets the value of variables orig_argv, orig_argc.
These variables keep references to the original values of argv, argc and give opportunity to manage them from the python C extensions if necessary.
I understand that the function Py_GetArgcArgv is rarely used, and this is true, but still believe that ability to manipulate these variables should be exist in any form of python from its C extension modules.
I tried different modules of C-extensions with such functional in embedded environment, but they all causes Segmentation Fault. The problem is not only in their implementation quality without any additional inspections, but also the function Py_GetArgcArgv doesn't additionally reported that its returned, and just ruturn null pointer in self argv parameter when used in embedded environment.
The following quote all the code that refers to this functionality in Python 2.7-3.3 at the moment:
/* For Py_GetArgcArgv(); set by main() */
static char **orig_argv;
static int orig_argc;
..........................................................................................
/* Main program */
int
Py_Main(int argc, char **argv)
{
..........................................................................................
orig_argc = argc; /* For Py_GetArgcArgv() */
orig_argv = argv;
..........................................................................................
}
void
Py_GetArgcArgv(int *argc, char ***argv)
{
*argc = orig_argc;
*argv = orig_argv;
}
Thats why I would like to suggest something similar to such function and use it in Py_Main and probably make it available from Python C API.
And also extend Py_GetArgcArgv with more detailed null pointer handling if variables orig_argv, orig_argc had not been initialized.
void
Py_InitArgcArgv(int *argc, char ***argv)
{
if(! *argv) return -1;
orig_argc = *argc; /* For Py_GetArgcArgv() */
orig_argv = *argv;
return 0;
}
Would like to see other suggestions.
Thanks.
|
|||
| msg222777 - (view) | Author: Mark Lawrence (BreamoreBoy) * | Date: 2014-07-11 18:39 | |
Without a patch this issue will go nowhere. I'm assuming that this limitation must have been overcome by other projects using embedded Python. Has anybody got any ideas as to how, I certainly haven't? |
|||
| msg353242 - (view) | Author: STINNER Victor (vstinner) * ![]() |
Date: 2019-09-26 00:44 | |
I only saw one request (this issue) for this feature, in 2012. So it doesn't sound really important. I close the issue. |
|||
| msg370965 - (view) | Author: Petr Viktorin (petr.viktorin) * ![]() |
Date: 2020-06-08 07:54 | |
FWIW, another project that needs Py_GetArgcArgv is "setproctitle": https://bugzilla.redhat.com/show_bug.cgi?id=1792059 See also: https://github.com/cherrypy/cherrypy/issues/1506 |
|||
| msg370966 - (view) | Author: Daniele Varrazzo (piro) * | Date: 2020-06-08 08:43 | |
Py_GetArgcArgv gone broke setproctitle indeed. https://github.com/dvarrazzo/py-setproctitle/issues/76 Is there a way to get the same feature in 3.9 or should setproctitle become no-op from 3.9 on and Python loses this feature? Thank you. |
|||
| msg371026 - (view) | Author: STINNER Victor (vstinner) * ![]() |
Date: 2020-06-08 17:18 | |
I mark this issue as a duplicate of bpo-23427. |
|||
| msg371029 - (view) | Author: STINNER Victor (vstinner) * ![]() |
Date: 2020-06-08 17:25 | |
See also bpo-40910: "Py_GetArgcArgv() is no longer exported by the C API". |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:57:33 | admin | set | github: 59782 |
| 2020-06-08 17:25:56 | vstinner | set | messages: + msg371029 |
| 2020-06-08 17:18:11 | vstinner | set | superseder: Add sys.orig_argv: original command line arguments passed to the Python executable resolution: out of date -> duplicate messages: + msg371026 |
| 2020-06-08 08:43:40 | piro | set | nosy:
+ piro messages:
+ msg370966 |
| 2020-06-08 07:54:56 | petr.viktorin | set | nosy:
+ petr.viktorin messages: + msg370965 |
| 2019-09-26 00:44:19 | vstinner | set | status: open -> closed nosy:
+ vstinner resolution: out of date |
| 2019-04-26 19:01:28 | BreamoreBoy | set | nosy:
- BreamoreBoy |
| 2014-07-11 18:39:06 | BreamoreBoy | set | versions:
+ Python 3.5, - Python 2.7, Python 3.2, Python 3.3 nosy: + BreamoreBoy messages: + msg222777 type: crash -> enhancement |
| 2012-11-13 05:05:09 | eric.snow | set | nosy:
+ eric.snow |
| 2012-08-10 17:28:33 | belopolsky | set | nosy:
+ belopolsky |
| 2012-08-08 05:20:47 | Ramchandra Apte | set | title: Real Argc Argv in embedded interpreter -> Real argc and argv in embedded interpreter |
| 2012-08-07 20:42:54 | nordaux | set | title: Real Argc Argv in embeded interpreter -> Real Argc Argv in embedded interpreter |
| 2012-08-07 20:38:29 | nordaux | create | |
