-
-
Notifications
You must be signed in to change notification settings - Fork 8
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 #112 from jorenham/complete/scipy.io
complete `scipy.io`
- Loading branch information
Showing
8 changed files
with
283 additions
and
186 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
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,22 +1,22 @@ | ||
# This module is not meant for public use and will be removed in SciPy v2.0.0. | ||
|
||
from typing import Final | ||
from typing_extensions import deprecated | ||
|
||
from ._arffread import MetaData as _MetaData | ||
|
||
__all__ = ["ArffError", "MetaData", "ParseArffError", "loadarff"] | ||
|
||
@deprecated("will be removed in SciPy v2.0.0") | ||
_msg: Final = "will be removed in SciPy v2.0.0" | ||
|
||
@deprecated(_msg) | ||
class ArffError(OSError): ... | ||
|
||
@deprecated("will be removed in SciPy v2.0.0") | ||
@deprecated(_msg) | ||
class ParseArffError(ArffError): ... | ||
|
||
@deprecated("will be removed in SciPy v2.0.0") | ||
class MetaData: | ||
def __init__(self, /, rel: object, attr: object) -> None: ... | ||
def __getitem__(self, key: object, /) -> object: ... | ||
def __iter__(self, /) -> object: ... | ||
def names(self, /) -> object: ... | ||
def types(self, /) -> object: ... | ||
@deprecated(_msg) | ||
class MetaData(_MetaData): ... | ||
|
||
@deprecated("will be removed in SciPy v2.0.0") | ||
@deprecated(_msg) | ||
def loadarff(f: object) -> object: ... |
Oops, something went wrong.