New GitHub issue #92622 from ylevental:<br>

<hr>

<pre>
<!--
  If you're new to Python and you're not sure whether what you're experiencing is a bug, the CPython issue tracker is not
  the right place to seek help. Consider the following options instead:

  - reading the Python tutorial: https://docs.python.org/3/tutorial/
  - posting in the "Users" category on discuss.python.org: https://discuss.python.org/c/users/7
  - emailing the Python-list mailing list: https://mail.python.org/mailman/listinfo/python-list
  - searching our issue tracker (https://github.com/python/cpython/issues) to see if
    your problem has already been reported
-->

**Bug report**

Again, this does not happen when I run the program from the command line, just in IDLE.  If you remove the import lines that include torchvision, then the plot shows up.  Otherwise, the plot is not visible.

```
from torchvision import datasets
from torchvision.transforms import ToTensor
from matplotlib import pyplot as plt

import numpy as np

img = np.array([[1,2,3,4,5],[6,7,8,9,10],[6,7,8,9,10],[6,7,8,9,10],[6,7,8,9,10]])

plt.imshow(img, cmap="gray")
plt.show()
```

**Your environment**

<!-- Include as many relevant details as possible about the environment you experienced the bug in -->

- CPython versions tested on: 3.9.12
- Operating system and architecture: Fedora 34

<!--
You can freely edit this text. Remove any lines you believe are unnecessary.
-->

</pre>

<hr>

<a href="https://github.com/python/cpython/issues/92622">View on GitHub</a>
<p>Labels: type-bug</p>
<p>Assignee: </p>