We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should return False if the username starts with a non-ascii character
Returns True even if the username starts with a non-ascii character such as a period (.)
print(validate_user(".blue.kale", 3))
True
Python 3.9.2
Linux linux-instance 5.10.0-26-cloud-amd64 #1 SMP Debian 5.10.197-1 (2023-09-29) x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered:
closes google#34089
a1681c6
Updated validations.py python script. Fixed the behavior of validate_user function in validations.py.
Successfully merging a pull request may close this issue.
Expected Behavior
Should return False if the username starts with a non-ascii character
Actual Behavior
Returns True even if the username starts with a non-ascii character such as a period (.)
Steps to Reproduce the Problem
print(validate_user(".blue.kale", 3))
True
Specifications
Python 3.9.2
Linux linux-instance 5.10.0-26-cloud-amd64 #1 SMP Debian 5.10.197-1 (2023-09-29) x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered: