@@ -27,19 +27,19 @@ def unicode_array():
27
27
"capitalize" ,
28
28
"expandtabs" ,
29
29
"isalnum" ,
30
- # "isalpha", (10-23-23) skipped temporarily since it is now a ufunc
31
- "isdigit" ,
30
+ # "isalpha",
31
+ # "isdigit",
32
32
"islower" ,
33
- "isspace" ,
33
+ # "isspace",
34
34
"istitle" ,
35
35
"isupper" ,
36
36
"lower" ,
37
37
"splitlines" ,
38
38
"swapcase" ,
39
39
"title" ,
40
40
"upper" ,
41
- "isnumeric" ,
42
- "isdecimal" ,
41
+ # "isnumeric",
42
+ # "isdecimal",
43
43
]
44
44
45
45
@@ -61,19 +61,19 @@ def test_unary(string_array, unicode_array, function_name):
61
61
("center" , (None , 25 )),
62
62
("count" , (None , "A" )),
63
63
("encode" , (None , "UTF-8" )),
64
- ("endswith" , (None , "lo" )),
65
- # ("find", (None, "A")), # 11-6-2023 skipped temporarily
64
+ # ("endswith", (None, "lo")),
65
+ # ("find", (None, "A")),
66
66
("index" , (None , "e" )),
67
67
("join" , ("-" , None )),
68
68
("ljust" , (None , 12 )),
69
69
("partition" , (None , "A" )),
70
70
("replace" , (None , "A" , "B" )),
71
- # ("rfind", (None, "A")), # 11-6-2023 skipped temporarily
71
+ # ("rfind", (None, "A")),
72
72
("rindex" , (None , "e" )),
73
73
("rjust" , (None , 12 )),
74
74
("rpartition" , (None , "A" )),
75
75
("split" , (None , "A" )),
76
- ("startswith" , (None , "A" )),
76
+ # ("startswith", (None, "A")),
77
77
("zfill" , (None , 12 )),
78
78
]
79
79
0 commit comments