Hi, I want to report about bug with string.upper() method. In Georgian we don't have uppercase letters, so for example ord("ე".upper()) returns 7316, which is not a letter. I found this bug in my Django project, first letters of form labels where all wrong, when I started looking for the reason, I found that they are using upper method.
In python3.6 upper method works correctly with Georgian letters, but in python3.8 it has bug.