-
Notifications
You must be signed in to change notification settings - Fork 56
Coding style
Justin Chu edited this page Jan 24, 2023
·
10 revisions
- Even though relative imports are prevalent in ort, they are confusing, harder to manage and refactor. We should prefer absolute imports for clarity and robustness.
- Import only modules (in most cases that is not
__init__
). Import only the module instead of classes and functions to (1) keep the namespace clean and provide readers with more context on where its members come from, and (2) prevent circular import errors.- Prevent circular import errors: Programming FAQ — Python 3.10.4 documentation
Circular imports are fine where both modules use the "import" form of import. They fail when the 2nd module wants to grab a name out of the first ("from module import name") and the import is at the top level. That's because names in the 1st are not yet available, because the first module is busy importing the 2nd.
- Clean namespace: For example, readers don't need to backtrack to see sleep is a function from time, as opposed to a function defined in the file. https://google.github.io/styleguide/pyguide.html#22-imports
- Prevent circular import errors: Programming FAQ — Python 3.10.4 documentation
onnxscript/tests
contains integration tests and common test utilities (common/). Module unit tests should be created next to the module source with the name _test.py. This makes them easy to discover and obvious when unit tests are missing.