-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move dlis parser to submodule 'dlis'
This commit restructure the python submodules, and most notably, moves the DLIS reader from module 'dlisio' to submodule 'dlisio.dlis'. This is a major break of the API, but a necessary one now that dlisio is extended to be a multi-fileformat reader. Before this commit -> After this commit -------------------------------------------------- dlisio (module) dlisio (module) |-> core (submodule) |-> core (submodule) |-> lis (submodule) |-> lis (submodule) | |-> load | |-> load | |-> file | |-> file | |-> curves | |-> curves | | |-> load | -> common (submodule) |-> logical,physical_file | -> dlis (submodule) | |-> load |-> plumbing (submodule) |-> file |-> object-types etc.. |-> object-types |-> utils (submodule) |-> etc .. The commit is rather large and noisy, but there is really no sensible, smaller and autonomous commits to be made. To break it down, this commit mainly does 3 things: 1) Rename files into the new project tree 2) Update imports, both internally in the package, and in the test directory 3) Update documentation references
- Loading branch information
Showing
64 changed files
with
903 additions
and
940 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .errorhandler import ErrorHandler, Actions | ||
from .open import open | ||
from .settings import get_encodings, set_encodings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.