@@ -1072,13 +1072,6 @@ function Matrix()
10721072 return Matrix (uninitialized, 0 , 0 )
10731073end
10741074
1075- for name in (" alnum" , " alpha" , " cntrl" , " digit" , " number" , " graph" ,
1076- " lower" , " print" , " punct" , " space" , " upper" , " xdigit" )
1077- f = Symbol (" is" ,name)
1078- @eval import . UTF8proc: $ f
1079- @eval @deprecate ($ f)(s:: AbstractString ) all ($ f, s)
1080- end
1081-
10821075# TODO : remove warning for using `_` in parse_input_line in base/client.jl
10831076
10841077# Special functions have been moved to a package
@@ -1512,7 +1505,7 @@ export hex2num
15121505@deprecate convert (:: Type{Symbol} , s:: AbstractString ) Symbol (s)
15131506@deprecate convert (:: Type{String} , s:: Symbol ) String (s)
15141507@deprecate convert (:: Type{String} , v:: Vector{UInt8} ) String (v)
1515- @deprecate convert (:: Type{S} , g:: UTF8proc .GraphemeIterator ) where {S<: AbstractString } convert (S, g. s)
1508+ @deprecate convert (:: Type{S} , g:: Unicode .GraphemeIterator ) where {S<: AbstractString } convert (S, g. s)
15161509
15171510# Issue #19923
15181511@deprecate ror circshift
@@ -2972,6 +2965,28 @@ end
29722965@deprecate_moved sum_kbn " KahanSummation"
29732966@deprecate_moved cumsum_kbn " KahanSummation"
29742967
2968+ # PR #25021
2969+ @deprecate_moved normalize_string " Unicode" true true
2970+ @deprecate_moved graphemes " Unicode" true true
2971+ @deprecate_moved is_assigned_char " Unicode" true true
2972+ @deprecate_moved textwidth " Unicode" true true
2973+ @deprecate_moved islower " Unicode" true true
2974+ @deprecate_moved isupper " Unicode" true true
2975+ @deprecate_moved isalpha " Unicode" true true
2976+ @deprecate_moved isdigit " Unicode" true true
2977+ @deprecate_moved isnumber " Unicode" true true
2978+ @deprecate_moved isalnum " Unicode" true true
2979+ @deprecate_moved iscntrl " Unicode" true true
2980+ @deprecate_moved ispunct " Unicode" true true
2981+ @deprecate_moved isspace " Unicode" true true
2982+ @deprecate_moved isprint " Unicode" true true
2983+ @deprecate_moved isgraph " Unicode" true true
2984+ @deprecate_moved lowercase " Unicode" true true
2985+ @deprecate_moved uppercase " Unicode" true true
2986+ @deprecate_moved titlecase " Unicode" true true
2987+ @deprecate_moved lcfirst " Unicode" true true
2988+ @deprecate_moved ucfirst " Unicode" true true
2989+
29752990# END 0.7 deprecations
29762991
29772992# BEGIN 1.0 deprecations
0 commit comments