@@ -27,19 +27,19 @@ def unicode_array():
2727 "capitalize" ,
2828 "expandtabs" ,
2929 "isalnum" ,
30- # "isalpha", (10-23-23) skipped temporarily since it is now a ufunc
31- "isdigit" ,
30+ # "isalpha",
31+ # "isdigit",
3232 "islower" ,
33- "isspace" ,
33+ # "isspace",
3434 "istitle" ,
3535 "isupper" ,
3636 "lower" ,
3737 "splitlines" ,
3838 "swapcase" ,
3939 "title" ,
4040 "upper" ,
41- "isnumeric" ,
42- "isdecimal" ,
41+ # "isnumeric",
42+ # "isdecimal",
4343]
4444
4545
@@ -61,19 +61,19 @@ def test_unary(string_array, unicode_array, function_name):
6161 ("center" , (None , 25 )),
6262 ("count" , (None , "A" )),
6363 ("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")),
6666 ("index" , (None , "e" )),
6767 ("join" , ("-" , None )),
6868 ("ljust" , (None , 12 )),
6969 ("partition" , (None , "A" )),
7070 ("replace" , (None , "A" , "B" )),
71- # ("rfind", (None, "A")), # 11-6-2023 skipped temporarily
71+ # ("rfind", (None, "A")),
7272 ("rindex" , (None , "e" )),
7373 ("rjust" , (None , 12 )),
7474 ("rpartition" , (None , "A" )),
7575 ("split" , (None , "A" )),
76- ("startswith" , (None , "A" )),
76+ # ("startswith", (None, "A")),
7777 ("zfill" , (None , 12 )),
7878]
7979
0 commit comments