Skip to content

Commit 7fb0aa5

Browse files
committed
Highlight __traceback__
1 parent ffab3f1 commit 7fb0aa5

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

grammars/MagicPython.cson

+1-1
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,7 @@ repository:
18291829
| metaclass | methods | module | mro | name
18301830
| qualname | self | signature | slots | subclasses
18311831
| version | weakref | wrapped | annotations | classcell
1832-
| spec | path | package | future
1832+
| spec | path | package | future | traceback
18331833
)__
18341834
)\\b
18351835

grammars/MagicPython.tmLanguage

+1-1
Original file line numberDiff line numberDiff line change
@@ -2813,7 +2813,7 @@ indirectly through syntactic constructs
28132813
| metaclass | methods | module | mro | name
28142814
| qualname | self | signature | slots | subclasses
28152815
| version | weakref | wrapped | annotations | classcell
2816-
| spec | path | package | future
2816+
| spec | path | package | future | traceback
28172817
)__
28182818
)\b
28192819
</string>

grammars/src/MagicPython.syntax.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,7 @@ repository:
13701370
| metaclass | methods | module | mro | name
13711371
| qualname | self | signature | slots | subclasses
13721372
| version | weakref | wrapped | annotations | classcell
1373-
| spec | path | package | future
1373+
| spec | path | package | future | traceback
13741374
)__
13751375
)\b
13761376
captures:

test/atom-spec/python-spec.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ describe("Grammar Tests", function() {
130130

131131
it("test/builtins/builtins3.py",
132132
function() {
133-
tokens = grammar.tokenizeLines("__all__ = ['bar', 'baz']\nsome.__bases__\nsome.__class__\nassert __debug__\n__builtins__\n__builtins__.len\nprint(__builtins__)\nsome.__dict__\nsome.__doc__\nsome.__file__\nsome.__members__\nsome.__metaclass__\nsome.__methods__\nsome.__module__\nsome.__mro__\nsome.__name__\nsome.__slots__\nsome.__subclasses__\nsome.__version__\nsome.__weakref__\nsome.__qualname__\nsome.__code__\nsome.__wrapped__\nsome.__signature__\nsome.__defaults__\nsome.__func__\nsome.__self__\nsome.__kwdefaults__\nsome.__matmul__\nsome.__imatmul__\nsome.__rmatmul__\nsome.__annotations__\nsome.__init_subclass__\nsome.__set_name__\nsome.__fspath__\nsome.__classcell__\nsome.__bytes__\nsome.__spec__\nsome.__path__\nsome.__prepare__\nsome.__package__\nsome.__notspecial__")
133+
tokens = grammar.tokenizeLines("__all__ = ['bar', 'baz']\nsome.__bases__\nsome.__class__\nassert __debug__\n__builtins__\n__builtins__.len\nprint(__builtins__)\nsome.__dict__\nsome.__doc__\nsome.__file__\nsome.__members__\nsome.__metaclass__\nsome.__methods__\nsome.__module__\nsome.__mro__\nsome.__name__\nsome.__slots__\nsome.__subclasses__\nsome.__version__\nsome.__weakref__\nsome.__qualname__\nsome.__code__\nsome.__wrapped__\nsome.__signature__\nsome.__defaults__\nsome.__func__\nsome.__self__\nsome.__kwdefaults__\nsome.__matmul__\nsome.__imatmul__\nsome.__rmatmul__\nsome.__annotations__\nsome.__init_subclass__\nsome.__set_name__\nsome.__fspath__\nsome.__classcell__\nsome.__bytes__\nsome.__spec__\nsome.__path__\nsome.__prepare__\nsome.__package__\nsome.__traceback__\nsome.__notspecial__")
134134
expect(tokens[0][0].value).toBe("__all__");
135135
expect(tokens[0][0].scopes).toEqual(["source.python","support.variable.magic.python"]);
136136
expect(tokens[0][1].value).toBe(" ");
@@ -401,8 +401,14 @@ describe("Grammar Tests", function() {
401401
expect(tokens[41][0].scopes).toEqual(["source.python"]);
402402
expect(tokens[41][1].value).toBe(".");
403403
expect(tokens[41][1].scopes).toEqual(["source.python"]);
404-
expect(tokens[41][2].value).toBe("__notspecial__");
405-
expect(tokens[41][2].scopes).toEqual(["source.python"]);
404+
expect(tokens[41][2].value).toBe("__traceback__");
405+
expect(tokens[41][2].scopes).toEqual(["source.python","support.variable.magic.python"]);
406+
expect(tokens[42][0].value).toBe("some");
407+
expect(tokens[42][0].scopes).toEqual(["source.python"]);
408+
expect(tokens[42][1].value).toBe(".");
409+
expect(tokens[42][1].scopes).toEqual(["source.python"]);
410+
expect(tokens[42][2].value).toBe("__notspecial__");
411+
expect(tokens[42][2].scopes).toEqual(["source.python"]);
406412
});
407413

408414
it("test/builtins/builtins4.py",

test/builtins/builtins3.py

+4
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
some.__path__
4040
some.__prepare__
4141
some.__package__
42+
some.__traceback__
4243
some.__notspecial__
4344

4445

@@ -179,4 +180,7 @@
179180
__package__ : source.python, support.variable.magic.python
180181
some : source.python
181182
. : source.python
183+
__traceback__ : source.python, support.variable.magic.python
184+
some : source.python
185+
. : source.python
182186
__notspecial__ : source.python

0 commit comments

Comments
 (0)