Skip to content

Make vtkVariantStrictWeakOrder(a,b) work with Py3k.

David Gobbi requested to merge dgobbi/vtk:python-py3k into master

For Python 2, this method operated like the cmp(a,b) method. In Python 3, there is no cmp(a,b) method, so instead this method now returns (a < b) like the original C++ method.

Merge request reports