Skip to content

Commit 04b1067

Browse files
committed
BUG: fix isalpha docstring undetermined string literal
[skip actions][skip azp][skip cirrus]
1 parent 9a8a2e1 commit 04b1067

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/_core/code_generators/ufunc_docstrings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4377,7 +4377,7 @@ def add_newdoc(place, name, doc):
43774377
--------
43784378
>>> np.char.isalpha(["yes", "alpha"])
43794379
array([ True, True])
4380-
>>> np.char.isalpha(["not", "\x00", "alpha"])
4380+
>>> np.char.isalpha(["not", "\\x00", "alpha"])
43814381
array([ True, False, True])
43824382
>>> np.char.isalpha(["n0t", "4lpha"])
43834383
array([ False, False])

0 commit comments

Comments
 (0)