You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
results in a PYTHONPATH of "/path/to/dir:". As the empty segment at the end is interpreted as . (the current directory), this is undesireable. The easiest way to avoid this is to do:
If the PYTHONPATH environment variable is already empty, doing something like:
PYTHONPATH="/path/to/dir:$PYTHONPATH" python [...]
results in a PYTHONPATH of "/path/to/dir:". As the empty segment at the end is interpreted as . (the current directory), this is undesireable. The easiest way to avoid this is to do:
PYTHONPATH="/path/to/dir${PYTHONPATH:+:$PYTHONPATH}" python [...]
This defect is present in axiom.test.test_xatop in Axiom, as well as in epsilon.release in Epsilon.
Imported from Launchpad using lp2gh.
The text was updated successfully, but these errors were encountered: