Skip to content
  • Augustin Bouverot's avatar
    [boursorama] Fix non alphanum characters virtual keyboard crash · c21b7625
    Augustin Bouverot authored and hydrargyrum's avatar hydrargyrum committed
    In python3 the str.isalpha() (same for str.isalnum()) method returns True
    if every symbol in the string is defined as "Letter" in the unicode
    character database. It includes non "ASCII alphabetical" characters,
    leading to a virtual keyboard crash.
    We set a regexp in module.py to solve this issue.
    c21b7625