Skip to content

blackandred/python-bug-sourcefileloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Issue: SourceFileLoader is loading files from different directories, but the contents of the files are MIXED

Actual results

dir1 ->
TEST1 at dir1/makefile.py Hello
TEST2 at dir1/makefile.py ['World']
TEST3 at dir1/makefile.py First

THIS ONE SHOULD BE EMPTY, TEST1 and TEST2 are not defined in dir1/dir2/makefile.py
dir1/dir2 ->
TEST1 at dir1/dir2/makefile.py Hello
TEST2 at dir1/dir2/makefile.py ['World']
TEST3 at dir1/dir2/makefile.py Overwritten

Expected

dir1 ->
TEST1 at dir1/makefile.py Hello
TEST2 at dir1/makefile.py ['World']
TEST3 at dir1/makefile.py First

THIS ONE SHOULD BE EMPTY, TEST1 and TEST2 are not defined in dir1/dir2/makefile.py
dir1/dir2 ->
TEST1 at dir1/dir2/makefile.py None
TEST2 at dir1/dir2/makefile.py None
TEST3 at dir1/dir2/makefile.py Overwritten

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages