File tree Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ variables:
245
245
| aenter | aexit
246
246
# other class magic
247
247
| call | del | init | new | init_subclass
248
- | instancecheck | subclasscheck
248
+ | instancecheck | sizeof | subclasscheck | subclasshook
249
249
# pickling
250
250
| getnewargs | getnewargs_ex | getstate | setstate | reduce | reduce_ex
251
251
# descriptors
@@ -263,11 +263,11 @@ variables:
263
263
# generic object
264
264
class | dict | doc | module | name
265
265
# module-specific / global
266
- | all | file | package
266
+ | all | builtins | cached | file | loader | package | path | spec
267
267
# functions & methods
268
268
| annotations | closure | code | defaults | func | globals | kwdefaults | self | qualname
269
269
# classes (attributes)
270
- | bases | prepare | slots | metaclass | mro
270
+ | bases | prepare | slots | metaclass | mro | weakref
271
271
# Python 2
272
272
| members | methods
273
273
# Python 3.12 (PEP 698)
Original file line number Diff line number Diff line change 451
451
#^^^^ - invalid.illegal.name
452
452
453
453
__all__
454
- #^^^^^^ meta.path support.variable.magic - meta.generic-name
454
+ #^^^^^^ meta.path.python support.variable.magic.python
455
+ __builtins__
456
+ #^^^^^^^^^^^ meta.path.python support.variable.magic.python
457
+ __cached__
458
+ #^^^^^^^^^ meta.path.python support.variable.magic.python
455
459
__file__
456
- #^^^^^^^ support.variable.magic
460
+ #^^^^^^^ meta.path.python support.variable.magic.python
461
+ __loader__
462
+ #^^^^^^^^^ meta.path.python support.variable.magic.python
463
+ __package__
464
+ #^^^^^^^^^^ meta.path.python support.variable.magic.python
465
+ __path__
466
+ #^^^^^^^ meta.path.python support.variable.magic.python
467
+ __spec__
468
+ #^^^^^^^ meta.path.python support.variable.magic.python
469
+
457
470
__missing__
458
471
#^^^^^^^^^^ support.function.magic
459
472
__bool__ abc .__nonzero__
You can’t perform that action at this time.
0 commit comments