We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 017d47b commit 30258f2Copy full SHA for 30258f2
1 file changed
pylint/checkers/non_ascii_names.py
@@ -47,9 +47,8 @@ class NonAsciiNameChecker(base_checker.BaseChecker):
47
"non-ascii-file-name",
48
(
49
# Some = PyCharm at the time of writing didn't display the non_ascii_name_loł
50
- # files and had big troubles with git. Probably only a bug shows the problem
51
- # quite good. That's also why this is a warning and not only a convention!
52
- "Under python 3.5, PEP 3131 only allows non-ascii identifiers, not file names."
+ # files. That's also why this is a warning and not only a convention!
+ "Under python 3.5, PEP 3131 allows non-ascii identifiers, but not non-ascii file names."
53
"Since Python 3.5, even though Python supports UTF-8 files, some editors or tools "
54
"don't."
55
),
0 commit comments