diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-09-16 09:36:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-16 09:36:39 +0300 |
commit | 5e74e9d5996419dd10c30e5d397f2a0dcf2ca0a9 (patch) | |
tree | 12f628a546449f8d9171dad90c395eeb6609ee29 /numpy/lib/recfunctions.py | |
parent | f8694923d0a4b241369726bfda8bbea29099a848 (diff) | |
parent | 003bdc25b75566de64a90e223338b4bd4565155a (diff) | |
download | numpy-5e74e9d5996419dd10c30e5d397f2a0dcf2ca0a9.tar.gz |
Merge pull request #14511 from eric-wieser/fix-flatten_dtype
BUG: Fix flatten_dtype so that nested 0-field structs are flattened correctly
Diffstat (limited to 'numpy/lib/recfunctions.py')
-rw-r--r-- | numpy/lib/recfunctions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/recfunctions.py b/numpy/lib/recfunctions.py index 8011f5363..927161ddb 100644 --- a/numpy/lib/recfunctions.py +++ b/numpy/lib/recfunctions.py @@ -200,7 +200,7 @@ def flatten_descr(ndtype): descr = [] for field in names: (typ, _) = ndtype.fields[field] - if typ.names: + if typ.names is not None: descr.extend(flatten_descr(typ)) else: descr.append((field, typ)) |