System Information
Operating system: Windows 10
Graphics card: GTX 1060
Blender Version
Broken: (2.8+) (tried 2.81 and 2.82)
Short description of error
After running a script with the system console open blender will freeze on the next input (Note that the freeze is AFTER the program finishes executing).
This does not happen when the system console is not open.
Exact steps for others to reproduce the error
- make sure the system console is open (window > toggle system console)
- Open a new text document
- Write some basic code
- run the script
- try do anything else (save, add an object, run the script again)
- Sometimes I can run the script 2-3 times.
The code I was using:
import bpy import csv for i in range(0, 100): print(i)