diff options
author | Mike Taves <mwtoews@gmail.com> | 2022-10-27 06:02:37 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 10:02:37 -0700 |
commit | 13d55a3c2f016a58a6e9d6b8086f338e07c7478f (patch) | |
tree | a792928b2b4f959bdd685fba9dcf6ef7d049f145 /numpy/ma/core.py | |
parent | 12c2b7dd62fc0c14b81c8892ed5f4f59cc94d09c (diff) | |
download | numpy-13d55a3c2f016a58a6e9d6b8086f338e07c7478f.tar.gz |
MAINT: remove u-prefix for former Unicode strings (#22479)
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r-- | numpy/ma/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index ba01f3e2e..8c4ad37eb 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -175,7 +175,7 @@ default_filler = {'b': True, 'S': b'N/A', 'u': 999999, 'V': b'???', - 'U': u'N/A' + 'U': 'N/A' } # Add datetime64 and timedelta64 types |