From bd729ac1acf4f9f23af49c30a687e6221f79fbac 2005-09-28 00:47:31 From: fperez Date: 2005-09-28 00:47:31 Subject: [PATCH] small import bug --- diff --git a/IPython/Extensions/numeric_formats.py b/IPython/Extensions/numeric_formats.py index 05905a0..b6b2d29 100644 --- a/IPython/Extensions/numeric_formats.py +++ b/IPython/Extensions/numeric_formats.py @@ -3,6 +3,8 @@ Extension for printing Numeric Arrays in flexible ways. """ +from Numeric import ArrayType + def num_display(self,arg): """Display method for printing which treats Numeric arrays specially. """ diff --git a/doc/ChangeLog b/doc/ChangeLog index 4d87598..39de8dd 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2005-09-27 Fernando Perez + + * IPython/Extensions/numeric_formats.py: fix missing import, + reported by Stephen Walton. + 2005-09-24 Fernando Perez * IPython/demo.py: finish demo module, fully documented now.