Modifiers.with_properties()
Filter modifiers satisfying the given expression
Query Example
from glider import *
def query():
return (
Modifiers()
.with_properties(FunctionFilters.HAS_GLOBAL_VARIABLES_READ | FunctionFilters.HAS_ERRORS)
.exec(10)
)
Example Output

Last updated