PY3: Use string.ascii_lowercase for compatibility and locale independence

This commit is contained in:
Kelsey Jordahl
2014-04-15 17:59:08 -04:00
parent f2867118dc
commit f6325fb772
+1 -1
View File
@@ -126,7 +126,7 @@ class TestGeomMethods(unittest.TestCase):
"""
def _make_gdf(s):
n = len(s)
col1 = string.lowercase[:n]
col1 = string.ascii_lowercase[:n]
col2 = range(n)
return GeoDataFrame({'geometry': s.values,