with_all_properties is deprecated and will be removed in future versions. Please use with_properties in- stead. Adds a filter to get functions that have all given properties.
Deprecated: This method is deprecated and will be removed in future versions.
Alternative: Use with_properties() instead for improved functionality.
from glider import*defquery(): properties = [MethodProp.IS_PAYABLE, MethodProp.EXTERNAL]# Fetch a list of functions with all the properties functions =Functions().with_all_properties(properties).exec(10)return functions