> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/instructions/instructions.without_callee_name.md).

# Instructions.without\_callee\_name()

Adds a filter to get instructions that don't call a function with the given name.

`without_callee_name(name: str, sensitivity: bool = True) →` [`Instructions`](/glider-ide/api/instructions.md)

## Query Example

```python
from glider import *


def query():
  return (
    Instructions()
    .without_callee_name("keccak256")
    .exec(2,1)
  )
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FuDdMjMsA9Wx57AVMWMRY%2Fimage.png?alt=media&amp;token=1e22a45b-7241-47df-8709-49cd77a2c731" alt=""><figcaption></figcaption></figure>
