Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e759325

Browse files
committed
Removed Python 2.4 specific code.
svn path=/trunk/matplotlib/; revision=1913
1 parent 254392a commit e759325

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

lib/matplotlib/numerix/_sp_imports.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# Not sure why all the equivalences don't exist ...
2-
from scipy import (
3-
Int8, UnsignedInt8,
4-
Int16, UnsignedInt16,
5-
Int32, uint32,
6-
Float32, Float64,
7-
Complex32, Complex64,
8-
Float, Int, Complex)
2+
from scipy import Int8, UnsignedInt8, \
3+
Int16, UnsignedInt16, \
4+
Int32, uint32, \
5+
Float32, Float64, \
6+
Complex32, Complex64, \
7+
Float, Int, Complex
98

109
UInt8 = UnsignedInt8
1110
UInt16 = UnsignedInt16
@@ -26,5 +25,5 @@ class _TypeNamespace:
2625

2726
nx = _TypeNamespace()
2827

29-
from scipy import (inf, infty, Infinity)
28+
from scipy import inf, infty, Infinity
3029
infinity = Infinity

0 commit comments

Comments
 (0)