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
In cyclic_pattern_charset function, the s and n are removed in charset[1] and added in charset[2]. Why this happen ?
s
n
charset[1]
charset[2]
charset = [] charset += ["ABCDEFGHIJKLMNOPQRSTUVWXYZ"] # string.uppercase charset += ["abcdefghijklmnopqrstuvwxyz"] # string.lowercase charset += ["0123456789"] # string.digits if not charset_type: charset_type = config.Option.get("pattern") if charset_type == 1: # extended type charset[1] = "%$-;" + re.sub("[sn]", "", charset[1]) charset[2] = "sn()" + charset[2]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In cyclic_pattern_charset function, the
s
andn
are removed incharset[1]
and added incharset[2]
. Why this happen ?The text was updated successfully, but these errors were encountered: