-
-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expose Python API as package imports (#352)
* feat: Expose public API as package imports - Update usage documentation * debt: Drop redundant test module for removed Python 2 support - Python 2 compatibility character count code has been removed
- Loading branch information
1 parent
4412fb9
commit 5319c98
Showing
4 changed files
with
14 additions
and
17 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
"""gherkin-official public API.""" | ||
|
||
from __future__ import annotations | ||
|
||
from .parser import Parser | ||
from .pickles.compiler import Compiler | ||
|
||
__all__ = [ | ||
"Compiler", | ||
"Parser", | ||
] |
This file was deleted.
Oops, something went wrong.