blender/release/scripts/io
Campbell Barton 163f6055d2 bugfix [#23182] Using self.report() inside poll() gives crash
poll() function is now a static method in python, this is more correct, matching C where the operator is not created to run poll.


    def poll(self, context): ...

is now...

    @staticmethod
    def poll(context): ...

Pythons way of doing static methods is a bit odd but cant be helped :|

This does make subclassing poll functions with COMPAT_ENGINES break, so had to modify quite a few scripts for this.
2010-08-05 16:05:30 +00:00
..
netrender bugfix [#23182] Using self.report() inside poll() gives crash 2010-08-05 16:05:30 +00:00
export_3ds.py bugfix [#23182] Using self.report() inside poll() gives crash 2010-08-05 16:05:30 +00:00
export_fbx.py bugfix [#23182] Using self.report() inside poll() gives crash 2010-08-05 16:05:30 +00:00
export_mdd.py bugfix [#23182] Using self.report() inside poll() gives crash 2010-08-05 16:05:30 +00:00
export_obj.py Export OBJ script: 2010-08-03 17:20:18 +00:00
export_ply.py bugfix [#23182] Using self.report() inside poll() gives crash 2010-08-05 16:05:30 +00:00
export_x3d.py RNA Types metaclass registration 2010-08-02 02:55:12 +00:00
import_anim_bvh.py RNA Types metaclass registration 2010-08-02 02:55:12 +00:00
import_scene_3ds.py RNA Types metaclass registration 2010-08-02 02:55:12 +00:00
import_scene_obj.py RNA Types metaclass registration 2010-08-02 02:55:12 +00:00
import_shape_mdd.py bugfix [#23182] Using self.report() inside poll() gives crash 2010-08-05 16:05:30 +00:00