-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
46 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ | |
# Project Website: http://rasbt.github.io/biopandas/ | ||
# Code Repository: https://github.com/rasbt/biopandas | ||
|
||
__version__ = '0.2.2dev' | ||
__version__ = '0.2.2' | ||
__author__ = "Sebastian Raschka <[email protected]>" |
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 +1,27 @@ | ||
biopandas version: 0.2.1 | ||
biopandas version: 0.2.2dev | ||
## assert_raises | ||
|
||
*assert_raises(exception_type, message, func, *args, **kwargs)* | ||
|
||
Check that an exception is raised with a specific message | ||
|
||
**Parameters** | ||
|
||
- `exception_type` : exception | ||
|
||
The exception that should be raised | ||
|
||
- `message` : str (default: None) | ||
|
||
The error message that should be raised. Ignored if False or None | ||
|
||
- `func` : callable | ||
|
||
The function that raises the exception | ||
|
||
- `*args` : positional arguments to `func` | ||
|
||
|
||
- `**kwargs` : keyword arguments to `func` | ||
|
||
|