From kfarmer at thuban.org Tue Nov 9 20:59:40 2004 From: kfarmer at thuban.org (Keith J. Farmer) Date: Tue, 9 Nov 2004 11:59:40 -0800 Subject: [IronPython] Ping Message-ID: "A million voices suddenly cried out in glee, and were suddenly silenced..." ... anybody here? From eikeon at eikeon.com Tue Nov 9 21:42:26 2004 From: eikeon at eikeon.com (Daniel Krech) Date: Tue, 9 Nov 2004 15:42:26 -0500 Subject: [IronPython] Pong In-Reply-To: References: Message-ID: On Nov 9, 2004, at 2:59 PM, Keith J. Farmer wrote: > "A million voices suddenly cried out in glee, and were suddenly > silenced..." > > ... anybody here? /me waves From firemoth at gmail.com Tue Nov 9 21:45:18 2004 From: firemoth at gmail.com (Timothy Fitz) Date: Tue, 9 Nov 2004 15:45:18 -0500 Subject: [IronPython] Ping In-Reply-To: <972ec5bd041109124455f2e25e@mail.gmail.com> References: <972ec5bd041109124455f2e25e@mail.gmail.com> Message-ID: <972ec5bd0411091245105ddf41@mail.gmail.com> I am! and still waiting for someone to respond to my bug patch. From jkruso at cis.ctc.edu Wed Nov 10 21:28:30 2004 From: jkruso at cis.ctc.edu (Kruso, John) Date: Wed, 10 Nov 2004 12:28:30 -0800 Subject: [IronPython] Math.modPow Message-ID: Re: Mono.Math.ForIronPython library (BigInteger) ------------------------------------------------- John Kruso 10 Nov 2004 <> ------------------------------------------------- Was calculating factors and got: 8069490149.modPow(3,11522063093) = 1591935989 Ran bigCheck.py to get: b 8069490149 b^3 525458337307039866916945777949 b^3 % m 5886903285 (Get same results running IronPythonConsole bigCheck.py, because power and modulo run separately are correct.) Wrote a straight-forward function in bigTest.cs to verify the problem: modPow: 8069490149^3 % 11522063093 = 1591935989 bubPow: 8069490149^3 % 11522063093 = 5886903285 Check base^3: 525458337307039866916945777949 base^3 / modulus: 45604535669160813448 * modulus: 525458337307039866911058874664 Difference: 5886903285 ------------------------------------------------- Have included library source bigint.cs and batch file clkbi.bat used to create library. Batch file clk.bat runs verification. ------------------------------------------------- As a separate issue/nonissue: When I run IronPythonConsole, I get following files generated in the directory of the python script that I execute: snippets.dll snippets.pdb __main__.exe __main__.pdb -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ironnote.zip Type: application/x-zip-compressed Size: 26341 bytes Desc: ironnote.zip URL: From fredrik at pythonware.com Thu Nov 11 17:46:37 2004 From: fredrik at pythonware.com (Fredrik Lundh) Date: Thu, 11 Nov 2004 17:46:37 +0100 Subject: [IronPython] Re: Math.modPow References: Message-ID: John Kruso wrote: > When I run IronPythonConsole, I get following files > generated in the directory of the python script that > I execute: > > snippets.dll > snippets.pdb > __main__.exe > __main__.pdb see Jim's reply in the recent "Snippets" thread for an explanation: http://article.gmane.org/gmane.comp.python.ironpython.user/251 From jkruso at cis.ctc.edu Thu Nov 11 18:43:24 2004 From: jkruso at cis.ctc.edu (Kruso, John) Date: Thu, 11 Nov 2004 09:43:24 -0800 Subject: [IronPython] Math.modPow Message-ID: I think my prior post was trashed because of zip file --- DO NOT FOLLOW THE URL It caused my system to spawn unlimited copies of Mozilla. Here is post without attachments; I can supply source separately. Re: Mono.Math.ForIronPython library (BigInteger) ------------------------------------------------- John Kruso 10 Nov 2004 kruso at comcast.net ------------------------------------------------- Was calculating factors and got: 8069490149.modPow(3,11522063093) = 1591935989 Ran bigCheck.py to get: b 8069490149 b^3 525458337307039866916945777949 b^3 % m 5886903285 (Get same results running IronPythonConsole bigCheck.py, because power and modulo run separately are correct.) Wrote a straight-forward function in bigTest.cs to verify the problem: modPow: 8069490149^3 % 11522063093 = 1591935989 bubPow: 8069490149^3 % 11522063093 = 5886903285 Check base^3: 525458337307039866916945777949 base^3 / modulus: 45604535669160813448 * modulus: 525458337307039866911058874664 Difference: 5886903285 ------------------------------------------------- Have included library source bigint.cs and batch file clkbi.bat used to create library. Batch file clk.bat runs verification. Regards, John Kruso -------------- next part -------------- An HTML attachment was scrubbed... URL: From fredrik at pythonware.com Thu Nov 11 22:44:58 2004 From: fredrik at pythonware.com (Fredrik Lundh) Date: Thu, 11 Nov 2004 22:44:58 +0100 Subject: [IronPython] Re: Math.modPow References: Message-ID: > I think my prior post was trashed because of zip file --- > DO NOT FOLLOW THE URL > It caused my system to spawn unlimited copies of Mozilla. fwiw, I had no problem opening your ZIP file. I didn't use Mozilla to open it, though... From craig at coot.net Thu Nov 18 21:33:32 2004 From: craig at coot.net (Craig H. Anderson) Date: Thu, 18 Nov 2004 13:33:32 -0700 Subject: [IronPython] New to Asp.Net, What about Python? Message-ID: Greetings, Python has been my language of choice for 2 years. I have been using the ActiveState Python package with ASP for a while. I just purchased VisualStudio 2003 and plan to move to Asp.Net. Does anyone out there have pointers on using Python with VisualStudio and Asp.Net? Thanks