BUG: More Python3 fixes by Christoph Gohlke.

This commit is contained in:
Stefan van der Walt
2011-03-14 17:06:22 +02:00
parent 4760fc3dd4
commit 082ff69549
6 changed files with 18 additions and 8 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
from _mcp import MCP, MCP_Geometric, make_offsets
from ._mcp import MCP, MCP_Geometric, make_offsets
def route_through_array(array, start, end, fully_connected=True, geometric=True):
"""Simple example of how to use the MCP and MCP_Geometric classes.
+1 -1
View File
@@ -1,5 +1,5 @@
import numpy as np
import _spath
from . import _spath
def shortest_path(arr, reach=1, axis=-1, output_indexlist=False):
"""Find the shortest path through an n-d array from one side to another.