File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/str Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -776,7 +776,7 @@ static String upper(Object self,
776
776
777
777
@ TruffleBoundary
778
778
private static String toUpperCase (String str ) {
779
- return UCharacter .toUpperCase (Locale .ENGLISH , str );
779
+ return UCharacter .toUpperCase (Locale .ROOT , str );
780
780
}
781
781
}
782
782
@@ -903,7 +903,7 @@ private static String toLowerCase(String self) {
903
903
}
904
904
905
905
private static String internalToLowerCase (String self ) {
906
- return UCharacter .toLowerCase (Locale .ENGLISH , self );
906
+ return UCharacter .toLowerCase (Locale .ROOT , self );
907
907
}
908
908
}
909
909
@@ -2035,7 +2035,7 @@ static String doGeneric(Object self,
2035
2035
2036
2036
@ TruffleBoundary
2037
2037
private static String doTitle (String self ) {
2038
- return UCharacter .toTitleCase (Locale .ENGLISH , self , null );
2038
+ return UCharacter .toTitleCase (Locale .ROOT , self , null );
2039
2039
}
2040
2040
}
2041
2041
You can’t perform that action at this time.
0 commit comments