-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add prelude file, emptying top-level init.
Update readme. Rename io.py to path.py.
- Loading branch information
MylesBartlett
committed
Nov 13, 2024
1 parent
539e15e
commit de489ba
Showing
8 changed files
with
85 additions
and
12 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
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
-e file:. | ||
black==24.4.2 | ||
bump2version==1.0.1 | ||
# via serox | ||
cfgv==3.4.0 | ||
# via pre-commit | ||
click==8.1.7 | ||
|
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 |
---|---|---|
|
@@ -10,6 +10,8 @@ | |
# universal: false | ||
|
||
-e file:. | ||
bump2version==1.0.1 | ||
# via serox | ||
joblib==1.4.2 | ||
# via serox | ||
numpy==2.0.1 | ||
|
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
File renamed without changes.
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,32 @@ | ||
# pyright: reportUnusedImport=false | ||
from .cmp import Ord, PartialOrd | ||
from .iter import Bridge, DoubleEndedIterator, Iterator | ||
from .misc import Clone, Dupe | ||
from .option import Null, Option, Some | ||
from .optional import none, some | ||
from .question_mark import qmark | ||
from .range import Range | ||
from .result import Err, Ok, Result | ||
from .vec import Vec | ||
|
||
# export all imports | ||
__all__ = [ | ||
"Bridge", | ||
"Clone", | ||
"DoubleEndedIterator", | ||
"Dupe", | ||
"Err", | ||
"Iterator", | ||
"Null", | ||
"Ok", | ||
"Option", | ||
"Ord", | ||
"PartialOrd", | ||
"Range", | ||
"Result", | ||
"Some", | ||
"Vec", | ||
"none", | ||
"qmark", | ||
"some", | ||
] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.