summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/src/string
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Fix bug in parsing F77 style string arrays.Bob Eldering2023-03-271-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 Heger2023-02-111-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 testsRohit Goswami2021-12-062-0/+46
|
* TST: add a char array input testJulian Taylor2017-05-021-0/+29