Files
deb-python-pyvmomi/pyVmomi
Tianhao He d3055ea965 Fix python3 error when evaluating if obj is primitive type
Python3 doesn't have long type so isinstance(obj, types.long) will fail. Replacing isinstance(obj, types.long) and isinstance(obj, types.int) with isinstance(obj, six.integer_types)

Also replaced isinstance(obj, str) with isinstance(obj, six.string_types) to handle all string types in python2 and 3.
2016-03-21 22:43:11 -07:00
..
2015-10-14 14:02:37 -07:00