Guest User

Untitled

a guest
Mar 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. sys.path.insert(0, 'E:\demo_dir\example_dir\eg_dir\test_dir\')
  2. from src import name
  3. sys.path.pop(0)
  4.  
  5. old_cwd = os.getcwd()
  6. os.chdir('E:\demo_dir\example_dir\eg_dir\test_dir\')
  7. from src import name
  8. os.chdir(old_cwd)
  9.  
  10. old_cwd = os.getcwd(); os.chdir('E:\demo_dir\example_dir\eg_dir\test_dir\')
  11. sys.path.insert(0, 'E:\demo_dir\example_dir\eg_dir\test_dir\')
  12.  
  13. from src import name
  14.  
  15. os.chdir(old_cwd)
  16. sys.path.pop(0)
Add Comment
Please, Sign In to add comment