浏览代码

python: fix python3 problem

tags/v0.99.beta20
Alex Foulon 9 年前
父节点
当前提交
551ad91775
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      python/caca/canvas.py

+ 4
- 1
python/caca/canvas.py 查看文件

@@ -47,7 +47,10 @@ class _Canvas(object):
_lib.caca_free_canvas.argtypes = [_Canvas]
_lib.caca_free_canvas.restype = ctypes.c_int

return _lib.caca_free_canvas(self)
if self is not None:
return _lib.caca_free_canvas(self)

return None

class Canvas(_Canvas):
""" Canvas object, methods are libcaca functions with canvas_t as


正在加载...
取消
保存