Re: [IronPython] Re: IronPython 0.7.4 released

2005-05-09 Thread J. Merrill
Did an answer to this ever come (perhaps privately to you)? At 06:54 AM 5/4/2005, Anthony Tarlano wrote >Great job geeting 0.7.4 out the door!! > >Thanks for the heads up that it's possible to just grab the Lib >directory from Python-2.3.5 and replace the IPython/bin/Lib directory >to get the ball

Re: [IronPython] Re: IronPython 0.7.4 released

2005-05-09 Thread Anthony Tarlano
James, Yes, I did get a private response. Jim let me know that the issue is being discussed internally and when there has been an agreement on the way forward, which should be relatively soon, he will post that information to the mailing list. AnthonyOn 5/9/05, J. Merrill <[EMAIL PROTECTED]> wrot

Re: [IronPython] Re: IronPython 0.7.4 released

2005-05-09 Thread J. Merrill
Did an answer to this ever come (perhaps privately to you)? At 06:54 AM 5/4/2005, Anthony Tarlano wrote >Great job geeting 0.7.4 out the door!! > >Thanks for the heads up that it's possible to just grab the Lib >directory from Python-2.3.5 and replace the IPython/bin/Lib directory >to get the ball

Re: [IronPython] Re: IronPython 0.7.4 released

2005-05-04 Thread Anthony Tarlano
Great job geeting 0.7.4 out the door!! Thanks for the heads up that it's possible to just grab the Lib directory from Python-2.3.5 and replace the IPython/bin/Lib directory to get the ball rolling... One big question comes to mind now that I have all those nice stdlib .py files.. Do you intend to

RE: [IronPython] Re: IronPython 0.7.4 released

2005-05-03 Thread Jim Hugunin
Nick Jacobson wrote: > What are nstr and zip2? Two little hacks that I wrote a long time ago while playing around with different implementation and performance ideas. They don't belong in __builtins__ any more and will be removed. In case you're curious: nstr is an ascii string type that I was

[IronPython] Re: IronPython 0.7.4 released

2005-05-03 Thread Nick Jacobson
Michael Spencer wrote: << import __builtin__ >>> dir(__builtin__) ['ArithmeticError', 'AssertionError', 'AttributeError', 'DeprecationWarning', 'E OFError', 'Ellipsis', 'EnvironmentError', 'Equals', 'Exception', 'False', 'Float ingPointError', 'FutureWarning', 'GetHashCode', 'GetType', 'IOError',

[IronPython] Re: IronPython 0.7.4 released

2005-05-03 Thread Michael Spencer
Daniel Santa Cruz wrote: How can I determine which standard functions are currently implemented by IronPython? Would: import sys dir() show me what we have? Thanks! Daniel That will show the current namespace. Perhaps more useful to you is: >>> import __builtin__ >>> dir(__builtin__) ['Arithmet

[IronPython] Re: IronPython 0.7.4 released

2005-05-03 Thread Michael Spencer
Martin Maly wrote: Yes, it was part of getting the standard CPython's site.py to import correctly by IronPython. The standard site.py would assume that it is dealing with Jython if it detects 'java' as the prefix of the sys.platform string. yep - but this cuts both ways ;-) sys.platform[:4] == 'ja

RE: [IronPython] Re: IronPython 0.7.4 released

2005-05-03 Thread Martin Maly
Hi Daniel, For the sys module, you can do: import sys dir(sys) and get the result that way. Similarly for __builtin__. For sys and __builtin__ what you see in dir is what is implemented (or else it is a bug). However, there are modules - for example recently added 'binascii' - in which we only h

Re: [IronPython] Re: IronPython 0.7.4 released

2005-05-03 Thread Daniel Santa Cruz
How can I determine which standard functions are currently implemented by IronPython? Would: >>> import sys >>> dir() show me what we have? Thanks! Daniel___ users-ironpython.com mailing list users-ironpython.com@lists.ironpython.com http://lists.ironp

RE: [IronPython] Re: IronPython 0.7.4 released

2005-05-03 Thread Martin Maly
Yes, it was part of getting the standard CPython's site.py to import correctly by IronPython. The standard site.py would assume that it is dealing with Jython if it detects 'java' as the prefix of the sys.platform string. Martin > Michael Spencer Wrote: > > Thanks > > I note sys.platform has al

[IronPython] Re: IronPython 0.7.4 released

2005-05-03 Thread Michael Spencer
Martin Maly wrote: Hello IronPython community, We have just released IronPython 0.7.4. There were few feature requests and bug fixes that the community felt strongly about so we decided to release the 0.7.4 faster than usual. Thanks I note sys.platform has also changed to '.NET', from 'java-clr'.