System Information
Linux Mint 16, nvidia GTX 460 (not sure if relevant
Blender Version
Broken: 2.70-RC1 and 2.69
Worked: ?
Python snippet:
import bmesh, bpy
mesh = bpy.context.active_object.data
bm = bmesh.from_edit_mesh(mesh)
for edge in bm.edges:
edge.select = False
bmesh.update_edit_mesh(mesh)
bm.free()REPRO STEPS:
- Run script, it works
- Run script again, check console
- Run script again, check console
- Tab out of edit mode, then back in
- Run script again, crashes Blender
- If bm.free() is removed, no errors