sublime_text icon indicating copy to clipboard operation
sublime_text copied to clipboard

Wrong slot values in sublime_plugin.PackagePathFinder

Open deathaxe opened this issue 1 month ago • 0 comments

Description of the bug

The __slots__ still declares "loaders", which is not used and doesn't exist. It should be "packages" instead.

Steps to reproduce

Expected behavior

class PackagePathFinder(importlib.abc.MetaPathFinder):
    """ :meta private: """

    __slots__ = ['packages']

Actual behavior

class PackagePathFinder(importlib.abc.MetaPathFinder):
    """ :meta private: """

    __slots__ = ['loaders']

Sublime Text build number

4202

Operating system & version

all

(Linux) Desktop environment and/or window manager

No response

Additional information

No response

OpenGL context information


deathaxe avatar Dec 03 '25 17:12 deathaxe