Sublime Forum

ST3 Bug: Symbol indexing bug with python decorators

#1

Python decorators within classes are listed as a symbol with blank name. The decorated method itself is detected and listed correctly. For example,

class Base(object):
    @classmethod
    def query(cls):
        return Session.query(cls)

results in


There is no such issue with decorated functions (at module level).

Not sure if there is a more appropriate place to raise issues. If there is, let me know.

0 Likes