diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2022-11-25 18:19:16 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2022-11-25 18:21:36 +0100 |
commit | 5302f81bf83a6c4fcdcfe5c00a6f6951b851c405 (patch) | |
tree | 441b4ed23987e9d159974b587dc4cb2502e8b37f /numpy/array_api/tests/test_asarray.py | |
parent | d4b2d4f80060285ac085ea874aceaf9fa1bfb757 (diff) | |
download | numpy-5302f81bf83a6c4fcdcfe5c00a6f6951b851c405.tar.gz |
MAINT: fix source files that were incorrectly listed in .gitignore
To find such files:
```
import os
with open('../numpy/.gitignore') as f:
ignored = f.readlines()
ignored = [s.split('\n')[0] for s in ignored if s.startswith('numpy')]
for fname in ignored:
if os.path.exists(fname):
print(fname)
```
Diffstat (limited to 'numpy/array_api/tests/test_asarray.py')
0 files changed, 0 insertions, 0 deletions