-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explicitly convert to numpy uint32 type where appropriate.
`dtype=int` converts to the C `long` data type. On 64b Linux, that defaults to `int64_t`. On Windows however, even 64b, it is `int32_t`. Using `dtype=int` on Windows will raise an OverflowError when trying to convert uint32_t 0xFFFFFFFF values.
- Loading branch information
1 parent
e2be15c
commit c41c444
Showing
3 changed files
with
9 additions
and
9 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