We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 971b1c1 commit eb392dfCopy full SHA for eb392df
1 file changed
c_src/pythonx.cpp
@@ -429,9 +429,12 @@ import os
429
430
431
# Prepare env vars
432
-
433
-print(("python", os.environ))
434
-print(("elixir", envs))
+print("\n\npython")
+for key, value in os.environ.items():
+ print((key, value))
435
+print("\n\nelixir")
436
+for key, value in envs.items():
437
438
439
to_remove = [key for key in os.environ if key not in envs]
440
0 commit comments