Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
keys()
method returning boost::python::list
e.g
``` >>> import mapnik >>> sym = mapnik.PolygonSymbolizer() >>> sym.keys() [] >>> sym.fill = mapnik.Color("skyblue") >>> sym.fill_opacity = 0.7 >>> sym.keys() ['fill', 'fill-opacity'] ```
- Loading branch information