-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove internal py::DataWindow class (#1529)
- Internal method `frame.internal.window(row0, row1, col0, col1)` is removed. Same result can be achieved via `frame[row0:row1, col0:col1].to_list()`; - Removed class `py::DataWindow` which used to handle the `.window()` call. This class has been around since the very early days of datatable, and grew useless over time; - The `DT[i, j]` call is able to handle different row indices without problems, resolving issue #1527. Closes #1527
- Loading branch information
Showing
8 changed files
with
22 additions
and
391 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 was deleted.
Oops, something went wrong.
Oops, something went wrong.