Message328727
| Author |
RomainGeissler1A |
| Recipients |
Kevin.Harms, RomainGeissler1A, brett.cannon, dmalcolm, docs@python, eric.araujo, jankratochvil, meador.inge, ncoghlan, r.david.murray |
| Date |
2018年10月28日.18:50:52 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1540752652.48.0.788709270274.issue14956@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Hi,
Just updating this 6 year old bug report. The last comment says it's not possible to ignore environment when using the C-API. I don't know back then, but today it is possible. I have just built gdb 8.2 against python 3.7.1, and patched gdb with this simple patch, which apparently works:
--- gdb/python/python.c
+++ gdb/python/python.c
@@ -1726,6 +1726,9 @@
#endif
#endif
+ // Force using the toolchain python without being troubled by $PYTHONHOME or $PYTHONPATH.
+ Py_IgnoreEnvironmentFlag = 1;
+
Py_Initialize ();
PyEval_InitThreads ();
Cheers,
Romain |
|