Re: [IronPython] vs integration

2006-11-15 Thread Dino Viehland
I didn't know it off the top of my head, but it looks like this is devenv.exe /rootsuffix Exp (devenv is in (in %ProgramFiles%\Microsoft Visual Studio 8\Common7\IDE\)). From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill64bits Sent: Tuesday, November 14, 2006 5:09 PM To: Discussi

Re: [IronPython] Python Cryptographic Toolkit for IronPython

2006-11-15 Thread Jörgen Stenarson
Hi I'm happy to announce that my attempt to port pyreadline to ironpython finally has reached a state where I think it can be used. A new feature of this version of pyreadline is that you can select text using shift-Left/Right. Copy is bound to ctrl-shift-x (I might move it to ctrl-c but right

Re: [IronPython] Singles not comparing properly

2006-11-15 Thread Dave Fugate
Thanks for reporting this! The bug is that <, <=, >, and >= do not work when the left operand is a System.Single and the right operand is just about any integer type (CLR or Python). The CodePlex Work Item for this is http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId=

[IronPython] Differences between cpython and ironpython

2006-11-15 Thread Jörgen Stenarson
Hi, Sorry my announcement message on the ironpython pyreadline port got the wrong subject. This mail contains the differences I found between cpython and ironpython when working on the pyreadline port. 1) import time is much higher in ironpython than cpython 2) Had to patch source to be able

Re: [IronPython] fepy socket seek

2006-11-15 Thread Christopher Baus
> When you write to file, > 1. writer is checked for null. If it is, stream is not writable. Raise > exception. > 2. string is passed to the writer. > 3. The writer does appropriate newline translation and write it. > 4. The number of bytes written, after newline translation, is returned. > 5. read

Re: [IronPython] fepy socket seek

2006-11-15 Thread Sanghyeon Seo
2006/11/16, Christopher Baus <[EMAIL PROTECTED]>: > Good question. The seek must be in the binary write. I'm not calling it > directly. Again, the error only occurs when the binary flag is set. Any > write on a socket file with the binary flag set causes a seek error. Let's see what's going on

Re: [IronPython] fepy socket seek

2006-11-15 Thread Christopher Baus
> where's the seek ? > > the second argument to makefile is the requested buffer size. > Good question. The seek must be in the binary write. I'm not calling it directly. Again, the error only occurs when the binary flag is set. Any write on a socket file with the binary flag set causes a seek

Re: [IronPython] Mono, ironPython and WinForms

2006-11-15 Thread Giles Thomas
Thanks, Seo - I'll give it another go and will report any results to the list. Cheers, Giles > > 2006/11/13, Giles Thomas <[EMAIL PROTECTED]>: >> >> Seo, >> >> Does that extend to support for WinForms 2.0? Last time I tried >> running one >> of my .NET apps under Mono, it could not find the S

Re: [IronPython] Need authors for IronPython books

2006-11-15 Thread Michael Foord
Sanghyeon Seo wrote: > 2006/11/15, Mahesh Prakriya <[EMAIL PROTECTED]>: > >> Couples of publishers have ping'ed me about whether anyone is interested in >> writing a book on IronPython and they're currently bottlenecked on finding >> qualified authors. >> > > I know that Michael Foord is al

[IronPython] Python Cryptographic Toolkit for IronPython

2006-11-15 Thread Sanghyeon Seo
Python Cryptographic Toolkit is what you expect it to be. http://www.amk.ca/python/code/crypto One part of it is block encryption algorithms, like AES and DES. It follows PEP 272, API for Block Encryption Algorithms. http://www.python.org/dev/peps/pep-0272/ I wrote a simple wrapper transforming a

Re: [IronPython] Need authors for IronPython books

2006-11-15 Thread Sanghyeon Seo
2006/11/15, Mahesh Prakriya <[EMAIL PROTECTED]>: > Couples of publishers have ping'ed me about whether anyone is interested in > writing a book on IronPython and they're currently bottlenecked on finding > qualified authors. I know that Michael Foord is already writing a book on IronPython. -- S

Re: [IronPython] Mono, ironPython and WinForms

2006-11-15 Thread Sanghyeon Seo
2006/11/13, Giles Thomas <[EMAIL PROTECTED]>: > > Seo, > > Does that extend to support for WinForms 2.0? Last time I tried running one > of my .NET apps under Mono, it could not find the System.Windows.Forms > 2.0.0.0 DLL. I may well have been missing something obvious, however. Mono includes Sys