Re: [Numpy-discussion] a question about freeze on numpy 1.7.0

2013-03-06 Thread Gelin Yan
On Mon, Feb 25, 2013 at 4:09 PM, Bradley M. Froehle wrote: > I submitted a bug report (and patch) to cx_freeze. You can follow up with > them at http://sourceforge.net/p/cx-freeze/bugs/36/. > > -Brad > > > On Mon, Feb 25, 2013 at 12:06 AM, Gelin Yan wrote: > >> >> >> On Mon, Feb 25, 2013 at 3:53

Re: [Numpy-discussion] a question about freeze on numpy 1.7.0

2013-02-25 Thread Bradley M. Froehle
I submitted a bug report (and patch) to cx_freeze. You can follow up with them at http://sourceforge.net/p/cx-freeze/bugs/36/. -Brad On Mon, Feb 25, 2013 at 12:06 AM, Gelin Yan wrote: > > > On Mon, Feb 25, 2013 at 3:53 PM, Bradley M. Froehle < > brad.froe...@gmail.com> wrote: > >> I can repro

Re: [Numpy-discussion] a question about freeze on numpy 1.7.0

2013-02-25 Thread Gelin Yan
On Mon, Feb 25, 2013 at 3:53 PM, Bradley M. Froehle wrote: > I can reproduce with NumPy 1.7.0, but I'm not convinced the bug lies > within NumPy. > > The exception is not being raised on the `del sys` line. Rather it is > being raised in numpy.__init__: > > File > "/home/bfroehle/.local/lib/pyt

Re: [Numpy-discussion] a question about freeze on numpy 1.7.0

2013-02-24 Thread Bradley M. Froehle
I can reproduce with NumPy 1.7.0, but I'm not convinced the bug lies within NumPy. The exception is not being raised on the `del sys` line. Rather it is being raised in numpy.__init__: File "/home/bfroehle/.local/lib/python2.7/site-packages/cx_Freeze/initscripts/Console.py", line 27, in e

Re: [Numpy-discussion] a question about freeze on numpy 1.7.0

2013-02-24 Thread Gelin Yan
On Mon, Feb 25, 2013 at 9:16 AM, Ondřej Čertík wrote: > Hi Gelin, > > On Sun, Feb 24, 2013 at 12:08 AM, Gelin Yan wrote: > > Hi All > > > > When I used numpy 1.7.0 with cx_freeze 4.3.1 on windows, I quickly > > found out even a simple "import numpy" may lead to program failed with > > follow

Re: [Numpy-discussion] a question about freeze on numpy 1.7.0

2013-02-24 Thread Benjamin Root
On Sun, Feb 24, 2013 at 8:16 PM, Ondřej Čertík wrote: > Hi Gelin, > > On Sun, Feb 24, 2013 at 12:08 AM, Gelin Yan wrote: > > Hi All > > > > When I used numpy 1.7.0 with cx_freeze 4.3.1 on windows, I quickly > > found out even a simple "import numpy" may lead to program failed with > > follow

Re: [Numpy-discussion] a question about freeze on numpy 1.7.0

2013-02-24 Thread Ondřej Čertík
Hi Gelin, On Sun, Feb 24, 2013 at 12:08 AM, Gelin Yan wrote: > Hi All > > When I used numpy 1.7.0 with cx_freeze 4.3.1 on windows, I quickly > found out even a simple "import numpy" may lead to program failed with > following exception: > > "AttributeError: 'module' object has no attribute '

[Numpy-discussion] a question about freeze on numpy 1.7.0

2013-02-24 Thread Gelin Yan
Hi All When I used numpy 1.7.0 with cx_freeze 4.3.1 on windows, I quickly found out even a simple "import numpy" may lead to program failed with following exception: "AttributeError: 'module' object has no attribute 'sys' After a poking around some codes I noticed /numpy/core/__init__.py ha