-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit 8a8deee handles self-references in the specification by placing the still being constructed type in the type dict before recursing into its children. This is the correct thing to do, but we forgot that now the type information is incomplete when it is initialized. Therefore the `required_fields` and `all_fields` variables were not set correctly. This caused type inference to fail in particular cases such as for `Dirent` We now re-run the init (the setup) once the type is completely constructed ... Version bumped to 2020.01.21. Happy New Year! Closes #77 Closes #76
- Loading branch information
Kaushik Ghose
committed
Jan 21, 2020
1 parent
2b10fa1
commit 30a2d63
Showing
4 changed files
with
14 additions
and
5 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Copyright (c) 2019 Seven Bridges. See LICENSE | ||
# Copyright (c) 2019-2020 Seven Bridges. See LICENSE | ||
|
||
__version__ = "2019.12.06" | ||
__version__ = "2020.01.21" |
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