John Cupitt a370e5003e vips array types are more binding-friendly
this all works now:

```python
from gi.repository import Vips

a = Vips.ArrayDouble.new([1,2,3])
a.get()

a = Vips.ArrayInt.new([1,2,3])
a.get()

a = Vips.ArrayImage.new([c, d, e])
a.get()
```
2014-08-31 10:41:53 +01:00
..
2014-08-29 17:33:14 +01:00
2012-01-05 13:26:25 +00:00
2014-08-29 17:33:14 +01:00
2014-08-29 17:33:14 +01:00
2014-08-29 13:51:58 +01:00

vips8 binding for Python

This binding adds a few small helper functions to the gobject-introspection
binding for libvips.

This is the vips8 API, so it's not yet fully implemented. Use the older vipsCC
binding if you want a more complete system.