Skip to content

Commit

Permalink
Py3 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jun 17, 2015
1 parent 51943e2 commit 9bc7b11
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/test_meshpy.py
@@ -1,6 +1,4 @@
from __future__ import division
from __future__ import absolute_import
from six.moves import range
from __future__ import division, absolute_import, print_function

__copyright__ = "Copyright (C) 2013 Andreas Kloeckner"

Expand All @@ -24,6 +22,8 @@
THE SOFTWARE.
"""

from six.moves import range


# {{{ triangle

Expand Down Expand Up @@ -145,8 +145,8 @@ def test_tetgen_points():
options = Options("")
mesh = build(mesh_info, options=options)

print len(mesh.points)
print len(mesh.elements)
print(len(mesh.points))
print(len(mesh.elements))

#mesh.write_vtk("test.vtk")

Expand Down

0 comments on commit 9bc7b11

Please sign in to comment.