summaryrefslogtreecommitdiff
path: root/dev-ros/geodesy/files/py3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ros/geodesy/files/py3.patch')
-rw-r--r--dev-ros/geodesy/files/py3.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-ros/geodesy/files/py3.patch b/dev-ros/geodesy/files/py3.patch
index 08259ee976c1..66ef4e5dd3ca 100644
--- a/dev-ros/geodesy/files/py3.patch
+++ b/dev-ros/geodesy/files/py3.patch
@@ -1,31 +1,3 @@
-Index: geodesy/src/geodesy/wu_point.py
-===================================================================
---- geodesy.orig/src/geodesy/wu_point.py
-+++ geodesy/src/geodesy/wu_point.py
-@@ -159,12 +159,12 @@ class WuPointSet():
- # Initialize way point information.
- self.way_point_ids = {} # points symbol table
- self.n_points = len(self.points)
-- for wid in xrange(self.n_points):
-+ for wid in range(self.n_points):
- self.way_point_ids[self.points[wid].id.uuid] = wid
-
- # Create empty list of UTM points, corresponding to map points.
- # They will be evaluated lazily, when first needed.
-- self.utm_points = [None for wid in xrange(self.n_points)]
-+ self.utm_points = [None for wid in range(self.n_points)]
-
- def __contains__(self, item):
- """ Point set membership. """
-@@ -259,7 +259,7 @@ class WuPointSet():
- """
- return self.way_point_ids.get(key, default)
-
-- def next(self):
-+ def __next__(self):
- """ Next iteration point.
-
- :returns: Next :class:`WuPoint`.
Index: geodesy/tests/test_wu_point.py
===================================================================
--- geodesy.orig/tests/test_wu_point.py