-
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.
Upgrade ziggy-pydust to 0.12.3 (#27)
Accounts for changes in stub generation where stubs need to be checked in
- Loading branch information
1 parent
1967615
commit 2c95979
Showing
5 changed files
with
45 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -163,4 +163,3 @@ zig-out/ | |
|
||
pydust.build.zig | ||
build.zig | ||
*.pyi |
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,31 @@ | ||
from __future__ import annotations | ||
|
||
def nth_fibonacci_iterative(n, /): ... | ||
def nth_fibonacci_recursive(n, /, *, f0=0, f1=1): ... | ||
def nth_fibonacci_recursive_tail(n, /): ... | ||
|
||
class Fibonacci: | ||
""" | ||
A class that computes the Fibonacci numbers. | ||
""" | ||
|
||
def __init__(first_n, /): | ||
pass | ||
def __iter__(self, /): | ||
""" | ||
Implement iter(self). | ||
""" | ||
... | ||
|
||
class FibonacciIterator: | ||
""" | ||
An iterator that computes the Fibonacci numbers. | ||
""" | ||
|
||
def __init__(i, ith, next, stop, /): | ||
pass | ||
def __next__(self, /): | ||
""" | ||
Implement next(self). | ||
""" | ||
... |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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