RE: [IronPython] Saving sys.path

2005-04-27 Thread Keith J. Farmer
I agree that the env vars and the .pth present a migration path -- and that's a good thing I don't intend to disagree with. Freezing of modules: funny you should mention that. I recall a somewhat undermentioned feature of assemblies being composable from several seperate files, referred to a

Re: [IronPython] Saving sys.path

2005-04-27 Thread Brian Dorsey
On 27/04/05, Keith J. Farmer <[EMAIL PROTECTED]> wrote: > I'd set a user-level environment variable as well, checking that out, but it > seemed a kludge at best. In a multi-user environment it'd be a hassle. For > deployment to multiple machines, it'd be annoying at best. Indeed. In that scena

RE: [IronPython] Saving sys.path

2005-04-27 Thread Keith J. Farmer
on was my favorite language until C# came along. Maybe with IronPython-omega with generics...) From: [EMAIL PROTECTED] on behalf of Brian Dorsey Sent: Wed 4/27/2005 1:23 PM To: Discussion of IronPython Subjec

Re: [IronPython] Saving sys.path

2005-04-27 Thread Brian Dorsey
On 27/04/05, Keith J. Farmer <[EMAIL PROTECTED]> wrote: > I've switched to using a normal user account on my machine, and discovered I > couldn't change the global IRONPYTHON_HOME variable I'd created (my path > includes %IRONPYTHON_HOME% as a convenience thing)? So I switched to admin, > chang

RE: [IronPython] Saving sys.path

2005-04-27 Thread Keith J. Farmer
override with Environment Variables From: [EMAIL PROTECTED] on behalf of Martin Maly Sent: Wed 4/27/2005 10:20 AM To: Discussion of IronPython Subject: RE: [IronPython] Saving sys.path There are, as far as I can see, three different ways to help in this case and I am looking into

RE: [IronPython] Saving sys.path

2005-04-27 Thread Martin Maly
Title: [IronPython] Saving sys.path There are, as far as I can see, three different ways to help in this case and I am looking into implementing all of them very soon, definitely for the next release.   CPython uses environment variables PYTHONSTARTUP and PYTHONPATH to drive the

RE: [IronPython] Saving sys.path

2005-04-26 Thread Keith J. Farmer
To: users-ironpython.com@lists.ironpython.com Subject: [IronPython] Saving sys.path Second feature request of the week: I would like to save sys.path settings between interpreter sessions. Is there a way to do this today? If not, could there be an OS environment variable for this or, a

[IronPython] Saving sys.path

2005-04-26 Thread Michael Spencer
Second feature request of the week: I would like to save sys.path settings between interpreter sessions. Is there a way to do this today? If not, could there be an OS environment variable for this or, a startup.py file loaded each time the interpreter starts? Thanks Michael __