Skip to content

1.3

Compare
Choose a tag to compare
@simonw simonw released this 19 Jul 01:51
· 8 commits to main since this release
d1784ac

Three new filters: #38

  • --private: return only symbols that have a _ prefix (excluding __*__ methods which are treated as public)
  • --public: the opposite of private - just symbols that don't have a _ prefix, but still returns __*__ methods
  • --dunder: return just symbols matching __*__ - should usually be used with *.* to filter for class methods, e.g. symbex '*.*' --dunder