-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v1.14.1-rc0 * v1.14.1-rc1 --------- Co-authored-by: rtosholdings-bot <rtosholdings-bot@sig.com>
- Loading branch information
1 parent
24552d7
commit ec3d030
Showing
24 changed files
with
3,918 additions
and
1,224 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import riptable | ||
|
||
# Standardized riptable configuration settings applied when doing docstring validation. | ||
|
||
# Standardize on these display settings when executing examples | ||
riptable.Display.options.COL_MAX = 1_000_000 # display all Dataset columns (COL_ALL is incomplete) | ||
riptable.Display.options.E_MAX = 100_000_000 # render up to 100MM before using scientific notation | ||
riptable.Display.options.P_THRESHOLD = 0 # truncate small decimals, rather than scientific notation | ||
riptable.Display.options.NUMBER_SEPARATOR = True # put commas in numbers | ||
riptable.Display.options.HEAD_ROWS = 3 | ||
riptable.Display.options.TAIL_ROWS = 3 |
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,12 @@ | ||
# Extra name filters for docstring names to validate. | ||
# All names rooted at these filters will match. | ||
# | ||
# By default, all public names are included and all private names are excluded. | ||
# Each line has the form [+-]<name>, and specifies files to include (+) or exclude (-) from the default list. | ||
|
||
+riptable.rt_categorical.Categorical._fa | ||
+riptable.rt_fastarray.FastArray._np | ||
|
||
-riptable.rt_sort_cache | ||
-riptable.rt_fastarray.FastArray.abs | ||
-riptable.rt_fastarray.FastArray.save |
Oops, something went wrong.