Skip to content

Commit

Permalink
type-hint scipy.stats.distributions
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenham committed Aug 28, 2024
1 parent 9e65414 commit a181782
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions scipy-stubs/stats/distributions.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
from . import _continuous_distns, _discrete_distns
from ._continuous_distns import *
from ._discrete_distns import *
from ._distn_infrastructure import rv_continuous as rv_continuous, rv_discrete as rv_discrete, rv_frozen as rv_frozen
from ._entropy import entropy as entropy
from ._levy_stable import levy_stable as levy_stable
from ._distn_infrastructure import rv_continuous, rv_discrete, rv_frozen
from ._entropy import entropy
from ._levy_stable import levy_stable

__all__ = ["entropy", "levy_stable", "rv_continuous", "rv_discrete", "rv_frozen"]
__all__ += _continuous_distns.__all__
__all__ += _discrete_distns.__all__

0 comments on commit a181782

Please sign in to comment.