Jeremy Katz

Results 6 comments of Jeremy Katz

> Hello @apparentlymart , What if we add a `raw_result` attribute which represents the raw output string from command executed and then use `jsondecode` built-in function to process the JSON....

I'm seeing the same issue building on Debian 8 and deploying to SUSE 12.2, but the underlying problem isn't tied to these two or the particular library. libreadline is used...

https://github.com/jeremykatz/pyinstaller/commit/288f34cae0997e04087b43992de8c33b70b58562 is my current WIP solution. It avoids the issue with LD_LIBRARY_PATH and child processes, but has a major downside. /proc/self/exe and /proc/self/cmdline point to the dynamic linker and its...

After a little reading into the GNU dynamic linker, it appears that LD_LIBRARY_PATH is only read during program initialization. Unsetting or changing it after does not impact dlopen within the...

> I imagine it would be the same as resetting/restoring `LD_LIBRARY_PATH`. Which, by the way, can be performed in the python code (at the start of the program) if developer...

> > > I imagine it would be the same as resetting/restoring `LD_LIBRARY_PATH`. Which, by the way, can be performed in the python code (at the start of the program)...