forked from andersea/slurry
-
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.
Fix typing violations (and referring docs where changed).
Plus a couple of typos I happened to notice.
- Loading branch information
1 parent
5a5d7f9
commit f942c5f
Showing
11 changed files
with
52 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""An async streaming data processing framework.""" | ||
__version__ = '1.3.1' | ||
|
||
from ._pipeline import Pipeline | ||
from ._pipeline import Pipeline as Pipeline |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from ._trio import TrioSection | ||
from ._threading import ThreadSection | ||
from ._multiprocessing import ProcessSection | ||
from ._trio import TrioSection as TrioSection | ||
from ._threading import ThreadSection as ThreadSection | ||
from ._multiprocessing import ProcessSection as ProcessSection |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
"""A collection of common stream operations.""" | ||
from ._buffers import Window, Group, Delay | ||
from ._combiners import Chain, Merge, Zip, ZipLatest | ||
from ._filters import Skip, SkipWhile, Filter, Changes, RateLimit | ||
from ._producers import Repeat, Metronome, InsertValue | ||
from ._refiners import Map | ||
from ._buffers import Window as Window, Group as Group, Delay as Delay | ||
from ._combiners import Chain as Chain, Merge as Merge, Zip as Zip, ZipLatest as ZipLatest | ||
from ._filters import Skip as Skip, SkipWhile as SkipWhile, Filter as Filter, Changes as Changes, RateLimit as RateLimit | ||
from ._producers import Repeat as Repeat, Metronome as Metronome, InsertValue as InsertValue | ||
from ._refiners import Map as Map |
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