@@ -1072,13 +1072,6 @@ function Matrix()
1072
1072
return Matrix (uninitialized, 0 , 0 )
1073
1073
end
1074
1074
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
-
1082
1075
# TODO : remove warning for using `_` in parse_input_line in base/client.jl
1083
1076
1084
1077
# Special functions have been moved to a package
@@ -1512,7 +1505,7 @@ export hex2num
1512
1505
@deprecate convert (:: Type{Symbol} , s:: AbstractString ) Symbol (s)
1513
1506
@deprecate convert (:: Type{String} , s:: Symbol ) String (s)
1514
1507
@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)
1516
1509
1517
1510
# Issue #19923
1518
1511
@deprecate ror circshift
@@ -2972,6 +2965,28 @@ end
2972
2965
@deprecate_moved sum_kbn " KahanSummation"
2973
2966
@deprecate_moved cumsum_kbn " KahanSummation"
2974
2967
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
+
2975
2990
# END 0.7 deprecations
2976
2991
2977
2992
# BEGIN 1.0 deprecations
0 commit comments