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 (.)
Add the following line at the end of the script: print(validate_user(".blue.kale", 3)) Run the script using python3 [script_name].py Output: True
The text was updated successfully, but these errors were encountered:
Closes google#34156
05c8d35
Updated validations.py python script. Fixed the behavior of validate_user function in validations.py.
Fixes google#34156
ff227df
Tests pass
6e708c6
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
Add the following line at the end of the script: print(validate_user(".blue.kale", 3))
Run the script using python3 [script_name].py
Output: True
The text was updated successfully, but these errors were encountered: