> 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/point/point/point.get_tainted_sources_affecting_point.md).

# Point.get\_tainted\_sources\_affecting\_point()

`get_tainted_sources_affecting_point() →` [`APISet`](/glider-ide/api/iterables/apiset.md)`[`[`Point`](/glider-ide/api/point/point.md)`]`

Returns A set of tainted sources that affect the point.

## Query Example

```python
from glider import *


def query():
  instructions = Instructions().exec(1,1)

  affected_points = instructions[0].get_tainted_sources_affecting_point()
  print(affected_points)
  for point in affected_points:
    print(point.source_code())
  return instructions
```

## Output Example

<figure><img src="/files/5Ko03KVRVBrtC9FslFC5" alt=""><figcaption></figcaption></figure>
