| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent f505cd4 commit 1c0ddd6
11 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1710,7 +1710,7 @@ repository: | |||
| 1710 | 1710 | ] | |
| 1711 | 1711 | "illegal-object-name": | |
| 1712 | 1712 | comment: "It's illegal to name class or function \"True\"" | |
| 1713 | - name: "keyword.invalid.illegal.name.python" | ||
| 1713 | + name: "keyword.illegal.name.python" | ||
| 1714 | 1714 | match: "\\b(True|False|None)\\b" | |
| 1715 | 1715 | "illegal-anno": | |
| 1716 | 1716 | name: "invalid.illegal.annotation.python" | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2693,7 +2693,7 @@ indirectly through syntactic constructs | |||
| 2693 | 2693 | <key>comment</key> | |
| 2694 | 2694 | <string>It's illegal to name class or function "True"</string> | |
| 2695 | 2695 | <key>name</key> | |
| 2696 | - <string>keyword.invalid.illegal.name.python</string> | ||
| 2696 | + <string>keyword.illegal.name.python</string> | ||
| 2697 | 2697 | <key>match</key> | |
| 2698 | 2698 | <string>\b(True|False|None)\b</string> | |
| 2699 | 2699 | </dict> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1171,7 +1171,7 @@ repository: | |||
| 1171 | 1171 | ||
| 1172 | 1172 | illegal-object-name: | |
| 1173 | 1173 | comment: It's illegal to name class or function "True" | |
| 1174 | - name: keyword.invalid.illegal.name.python | ||
| 1174 | + name: keyword.illegal.name.python | ||
| 1175 | 1175 | match: \b(True|False|None)\b | |
| 1176 | 1176 | ||
| 1177 | 1177 | illegal-anno: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -40,7 +40,7 @@ invalid.illegal.operator.python | |||
| 40 | 40 | invalid.illegal.prefix.python | |
| 41 | 41 | keyword.codetag.notation.python | |
| 42 | 42 | keyword.control.flow.python | |
| 43 | - keyword.invalid.illegal.name.python | ||
| 43 | + keyword.illegal.name.python | ||
| 44 | 44 | keyword.operator.arithmetic.python | |
| 45 | 45 | keyword.operator.assignment.python | |
| 46 | 46 | keyword.operator.bitwise.python | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -21,7 +21,7 @@ | |||
| 21 | 21 | ) : meta.function-call.python, punctuation.definition.arguments.end.python, source.python | |
| 22 | 22 | foo : source.python | |
| 23 | 23 | . : source.python | |
| 24 | - None : keyword.invalid.illegal.name.python, source.python | ||
| 24 | + None : keyword.illegal.name.python, source.python | ||
| 25 | 25 | : source.python | |
| 26 | 26 | and : keyword.operator.logical.python, source.python | |
| 27 | 27 | foo. : source.python | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,13 +6,13 @@ class False(object): pass | |||
| 6 | 6 | ||
| 7 | 7 | class : meta.class.python, source.python, storage.type.class.python | |
| 8 | 8 | : meta.class.python, source.python | |
| 9 | - None : keyword.invalid.illegal.name.python, meta.class.python, source.python | ||
| 9 | + None : keyword.illegal.name.python, meta.class.python, source.python | ||
| 10 | 10 | : : meta.class.python, punctuation.section.class.begin.python, source.python | |
| 11 | 11 | : source.python | |
| 12 | 12 | pass : keyword.control.flow.python, source.python | |
| 13 | 13 | class : meta.class.python, source.python, storage.type.class.python | |
| 14 | 14 | : meta.class.python, source.python | |
| 15 | - True : keyword.invalid.illegal.name.python, meta.class.python, source.python | ||
| 15 | + True : keyword.illegal.name.python, meta.class.python, source.python | ||
| 16 | 16 | ( : meta.class.inheritance.python, meta.class.python, punctuation.definition.inheritance.begin.python, source.python | |
| 17 | 17 | False : constant.language.python, meta.class.inheritance.python, meta.class.python, source.python | |
| 18 | 18 | ) : meta.class.inheritance.python, meta.class.python, punctuation.definition.inheritance.end.python, source.python | |
@@ -21,7 +21,7 @@ class : meta.class.python, source.python, storage.type.class.python | |||
| 21 | 21 | pass : keyword.control.flow.python, source.python | |
| 22 | 22 | class : meta.class.python, source.python, storage.type.class.python | |
| 23 | 23 | : meta.class.python, source.python | |
| 24 | - False : keyword.invalid.illegal.name.python, meta.class.python, source.python | ||
| 24 | + False : keyword.illegal.name.python, meta.class.python, source.python | ||
| 25 | 25 | ( : meta.class.inheritance.python, meta.class.python, punctuation.definition.inheritance.begin.python, source.python | |
| 26 | 26 | object : meta.class.inheritance.python, meta.class.python, source.python, support.type.python | |
| 27 | 27 | ) : meta.class.inheritance.python, meta.class.python, punctuation.definition.inheritance.end.python, source.python | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,15 +4,15 @@ | |||
| 4 | 4 | ||
| 5 | 5 | a : source.python | |
| 6 | 6 | . : source.python | |
| 7 | - True : keyword.invalid.illegal.name.python, source.python | ||
| 7 | + True : keyword.illegal.name.python, source.python | ||
| 8 | 8 | : source.python | |
| 9 | 9 | = : keyword.operator.assignment.python, source.python | |
| 10 | 10 | b : source.python | |
| 11 | 11 | . : source.python | |
| 12 | - False : keyword.invalid.illegal.name.python, source.python | ||
| 12 | + False : keyword.illegal.name.python, source.python | ||
| 13 | 13 | : source.python | |
| 14 | 14 | = : keyword.operator.assignment.python, source.python | |
| 15 | 15 | d : source.python | |
| 16 | 16 | . : source.python | |
| 17 | - None : keyword.invalid.illegal.name.python, source.python | ||
| 17 | + None : keyword.illegal.name.python, source.python | ||
| 18 | 18 | : source.python | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,23 +6,23 @@ def False(): pass | |||
| 6 | 6 | ||
| 7 | 7 | def : meta.function.python, source.python, storage.type.function.python | |
| 8 | 8 | : meta.function.python, source.python | |
| 9 | - True : keyword.invalid.illegal.name.python, meta.function.python, source.python | ||
| 9 | + True : keyword.illegal.name.python, meta.function.python, source.python | ||
| 10 | 10 | ( : meta.function.parameters.python, meta.function.python, punctuation.definition.parameters.begin.python, source.python | |
| 11 | 11 | ) : meta.function.parameters.python, meta.function.python, punctuation.definition.parameters.end.python, source.python | |
| 12 | 12 | : : meta.function.python, punctuation.section.function.begin.python, source.python | |
| 13 | 13 | : source.python | |
| 14 | 14 | pass : keyword.control.flow.python, source.python | |
| 15 | 15 | def : meta.function.python, source.python, storage.type.function.python | |
| 16 | 16 | : meta.function.python, source.python | |
| 17 | - None : keyword.invalid.illegal.name.python, meta.function.python, source.python | ||
| 17 | + None : keyword.illegal.name.python, meta.function.python, source.python | ||
| 18 | 18 | ( : meta.function.parameters.python, meta.function.python, punctuation.definition.parameters.begin.python, source.python | |
| 19 | 19 | ) : meta.function.parameters.python, meta.function.python, punctuation.definition.parameters.end.python, source.python | |
| 20 | 20 | : : meta.function.python, punctuation.section.function.begin.python, source.python | |
| 21 | 21 | : source.python | |
| 22 | 22 | pass : keyword.control.flow.python, source.python | |
| 23 | 23 | def : meta.function.python, source.python, storage.type.function.python | |
| 24 | 24 | : meta.function.python, source.python | |
| 25 | - False : keyword.invalid.illegal.name.python, meta.function.python, source.python | ||
| 25 | + False : keyword.illegal.name.python, meta.function.python, source.python | ||
| 26 | 26 | ( : meta.function.parameters.python, meta.function.python, punctuation.definition.parameters.begin.python, source.python | |
| 27 | 27 | ) : meta.function.parameters.python, meta.function.python, punctuation.definition.parameters.end.python, source.python | |
| 28 | 28 | : : meta.function.python, punctuation.section.function.begin.python, source.python | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,7 +10,7 @@ def foo(): pass | |||
| 10 | 10 | . : entity.name.function.decorator.python, meta.function.decorator.python, source.python | |
| 11 | 11 | c : entity.name.function.decorator.python, meta.function.decorator.python, source.python | |
| 12 | 12 | . : entity.name.function.decorator.python, meta.function.decorator.python, source.python | |
| 13 | - None : keyword.invalid.illegal.name.python, meta.function.decorator.python, source.python | ||
| 13 | + None : keyword.illegal.name.python, meta.function.decorator.python, source.python | ||
| 14 | 14 | . : entity.name.function.decorator.python, meta.function.decorator.python, source.python | |
| 15 | 15 | z : entity.name.function.decorator.python, meta.function.decorator.python, source.python | |
| 16 | 16 | def : meta.function.python, source.python, storage.type.function.python | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -23,7 +23,7 @@ def foo(): pass | |||
| 23 | 23 | : meta.function.decorator.python, source.python | |
| 24 | 24 | c : entity.name.function.decorator.python, meta.function.decorator.python, source.python | |
| 25 | 25 | . : entity.name.function.decorator.python, meta.function.decorator.python, source.python | |
| 26 | - None : keyword.invalid.illegal.name.python, meta.function.decorator.python, source.python | ||
| 26 | + None : keyword.illegal.name.python, meta.function.decorator.python, source.python | ||
| 27 | 27 | . : entity.name.function.decorator.python, meta.function.decorator.python, source.python | |
| 28 | 28 | z : entity.name.function.decorator.python, meta.function.decorator.python, source.python | |
| 29 | 29 | : meta.function.decorator.python, source.python | |
| Back | FazBrowse Home | New Git URL |
0 commit comments