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

Skip to content

Commit cbb83fe

Browse files
committed
.dtypechar --> .dtype.char to keep in sync with numpy SVN
svn path=/trunk/matplotlib/; revision=1949
1 parent 493d414 commit cbb83fe

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2006-1-12 Fixed numpy / numeric to use .dtype.char to keep in SYNC with numpy SVN
2+
13
2006-1-11 Fixed setup.py for win32 build and added rc template to the MANIFEST.in
24

35
2006-1-10 Added xpdf distiller option. matplotlibrc ps.usedistiller can now be

lib/matplotlib/numerix/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def itemsize(a):
8888
# We've already checked for a valid numerix selector,
8989
# so assume numpy.
9090
def typecode(a):
91-
return a.dtypechar
91+
return a.dtype.char
9292
def iscontiguous(a):
9393
return a.flags.contiguous
9494
def byteswapped(a):

0 commit comments

Comments
 (0)