smem: auto updated to 1.5-6
This commit is contained in:
parent
91226bbb39
commit
aa43772431
2 changed files with 24 additions and 3 deletions
12
repo/smem/0001-Fix-xrange-in-Python-3.patch
Normal file
12
repo/smem/0001-Fix-xrange-in-Python-3.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
diff '--color=auto' -ura smem-1.5/smem smem-1.5.new/smem
|
||||
--- smem-1.5/smem 2015-05-15 12:52:02.000000000 -0500
|
||||
+++ smem-1.5.new/smem 2024-10-13 02:55:19.670091304 -0500
|
||||
@@ -646,7 +646,7 @@
|
||||
|
||||
pl = []
|
||||
ind = numpy.arange(len(l))
|
||||
- for n in xrange(len(rc)):
|
||||
+ for n in range(len(rc)):
|
||||
pl.append(pylab.bar(ind + offset + width * n,
|
||||
[x[1][rc[n]] for x in l], width, color=gc(n)))
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue