-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Azureblade3808/v0.x
v0.2.0
- Loading branch information
Showing
35 changed files
with
1,113 additions
and
1,505 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 |
---|---|---|
|
@@ -4,3 +4,7 @@ | |
# Coverage reports. | ||
/.coverage | ||
/coverage.* | ||
|
||
# Building artifacts. | ||
/dist | ||
*.egg-info |
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,3 @@ | ||
__version__ = "0.1.7" | ||
__version__ = "0.2.0" | ||
|
||
from ._defer import defer as defer | ||
from ._scope import defer_scope as defer_scope | ||
from .__public__ import * |
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,9 @@ | ||
from __future__ import annotations | ||
|
||
__all__ = [ | ||
"defer", | ||
"defer_scope", | ||
] | ||
|
||
from ._defer import defer | ||
from ._defer_scope import defer_scope |
File renamed without changes.
Oops, something went wrong.