Skip to content
Snippets Groups Projects
Commit 74e7a5ec authored by Andrew Maclean's avatar Andrew Maclean Committed by Kitware Robot
Browse files

Merge topic 'fix_testParallelXMLWriters_for_py3k'


09633c16 A fix to enable this script to work with Py3k.

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Acked-by: default avatarBen Boeckel <ben.boeckel@kitware.com>
Merge-request: !539
parents 2e0acc8d 09633c16
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ def GetSource(dataType):
pts = vtk.vtkPoints()
sg.SetPoints(pts)
npts = input.GetNumberOfPoints()
for i in xrange(npts):
for i in range(npts):
pts.InsertNextPoint(input.GetPoint(i))
sg.GetPointData().ShallowCopy(input.GetPointData())
......@@ -97,7 +97,7 @@ def TestDataType(dataType, reader, writer, ext, numTris):
writer.SetInputConnection(s.GetOutputPort())
npieces = 16
writer.SetNumberOfPieces(npieces)
pperrank = npieces / nranks
pperrank = npieces // nranks
start = pperrank * rank
end = start + pperrank - 1
writer.SetStartPiece(start)
......@@ -130,7 +130,7 @@ def TestDataType(dataType, reader, writer, ext, numTris):
contr.AllReduce(da, da2, vtk.vtkCommunicator.SUM_OP)
if rank == 0:
print da2.GetValue(0)
print(da2.GetValue(0))
import os
os.remove(filename)
for i in range(npieces):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment