From f502335a1a9121eeaa8bd2e06adae49c5408830a Mon Sep 17 00:00:00 2001 From: mdroe Date: Mon, 4 Jun 2012 21:02:28 +0000 Subject: Python 3.x fixes git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci_python/branches/sphere@17201 fe389314-cf27-0410-b35b-8c050e845b92 Former-commit-id: 645db247912b7d5985ab878bd3c7fb5e9574f05d --- lib/graph.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/graph.py') diff --git a/lib/graph.py b/lib/graph.py index 97c12b4..58b918d 100644 --- a/lib/graph.py +++ b/lib/graph.py @@ -36,6 +36,7 @@ This contains the code that does the actual unioning of regions. """ # TODO: Weak references for memory management problems? +from __future__ import absolute_import, division, unicode_literals, print_function # STDLIB import itertools @@ -45,8 +46,8 @@ import weakref import numpy as np # LOCAL -from sphere import great_circle_arc -from sphere import vector +from . import great_circle_arc +from . import vector # Set to True to enable some sanity checks DEBUG = False -- cgit