diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2023-03-28 22:55:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 22:55:13 +0200 |
commit | 4e11693a411433cb03b07fc3a04f2e4151280953 (patch) | |
tree | b868da27bd7e21f22e9ff93f7ea6ee097ee21857 /doc/whatsnew | |
parent | d429822d56c392b4be914f94d55807b55efbd705 (diff) | |
download | pylint-git-4e11693a411433cb03b07fc3a04f2e4151280953.tar.gz |
[Backport maintenance/2.17.x] Allow integers in TypeAlias names. (#8507)
Co-authored-by: Stephane Odul <1504511+sodul@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Diffstat (limited to 'doc/whatsnew')
-rw-r--r-- | doc/whatsnew/fragments/8485.false_positive | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/whatsnew/fragments/8485.false_positive b/doc/whatsnew/fragments/8485.false_positive new file mode 100644 index 000000000..8eac08b95 --- /dev/null +++ b/doc/whatsnew/fragments/8485.false_positive @@ -0,0 +1,5 @@ +``invalid-name`` now allows for integers in ``typealias`` names: +- now valid: ``Good2Name``, ``GoodName2``. +- still invalid: ``_1BadName``. + +Closes #8485 |