Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG: Fix bug in parsing F77 style string arrays. | Bob Eldering | 2023-03-27 | 1 | -0/+2 |
| | | | | | | | Example problematic variable: CHARACTER WORDARR(3)*8 This would be wrapped by an array with shape (3, 8) and dtype |S1, instead of the desired shape (3,) and dtype |S8. See #23356. | ||||
* | BUG: fix for f2py string scalars (#23194) | Alexander Heger | 2023-02-11 | 1 | -0/+7 |
| | | | | | | | | | | | | | | in previous version, any string scalar was converted to a string array of dimension len, i.e., a definition character(len=N) :: X effectively became character(len=NNN), dimension(NNN) :: X from the point of few of the numpy (python) interface: X.shape == (NNN,) X.dtype == '|SNNN' Closes gh-23192 | ||||
* | MAINT,TST: Refactor F2PY tests | Rohit Goswami | 2021-12-06 | 2 | -0/+46 |
| | |||||
* | TST: add a char array input test | Julian Taylor | 2017-05-02 | 1 | -0/+29 |