Skip to content

Commit fc6c3f5

Browse files
committed
Python3: xrange
1 parent 9086b64 commit fc6c3f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/combinat/k_regular_sequence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def pad_right(T, length, zero=0):
131131
sage: pad_right([1,2,3], 10)
132132
[1, 2, 3, 0, 0, 0, 0, 0, 0, 0]
133133
"""
134-
return T + type(T)(zero for _ in xrange(length - len(T)))
134+
return T + type(T)(zero for _ in range(length - len(T)))
135135

136136

137137
class kRegularSequence(RecognizableSeries):

0 commit comments

Comments
 (0)