```python >>> import casbin >>> e = casbin.Enforcer("examples/rbac_with_deny_model.conf", "examples/rbac_with_deny_policy.csv") >>> e.enforce_ex("alice", "data2", "read") (True, []) ``` It should not be `[]`, should have data.