Hi ironpython,

Here's your Daily Digest of new issues for project "IronPython".

In today's digest:ISSUES

1. [New comment] Scope is not remembered after an import
2. [New comment] Feature request: implement PYTHONINSPECT env var support

----------------------------------------------

ISSUES

1. [New comment] Scope is not remembered after an import
http://ironpython.codeplex.com/workitem/30955
User WimVanLoocke has commented on the issue:

"Hi Markus,


thanks for you comment, i will try it out

Kind regards,

Wim"-----------------

2. [New comment] Feature request: implement PYTHONINSPECT env var support
http://ironpython.codeplex.com/workitem/28776
User fdanny has commented on the issue:

"I wanted to contribute and start small. I notice this one and seem straight 
forward and still open for 2.7.1. I wrote the code a little different from 
shadowfged in the PythonCommonLine class 
procted override int Run() 
{
    //... Existing code

     // Equivalent to -i command line option
            string inspectLine = 
Environment.GetEnvironmentVariable("IRONPYTHONINSPECT");
            if (inspectLine != null)
                Options.Introspection = true;

            return base.Run();
}

I simply just set the Option.Introspection to true if the EnviromentVariable 
exists.  If the -i was included in the arguments I would just set this 
Introspection to true again, if I figure not a big deal. 

I wanted to get feedback on this. I wasn't sure if I should put this code in 
the section of the code or the PythonCommandLine.Initialize method. 

Thanks"
----------------------------------------------



----------------------------------------------
You are receiving this email because you subscribed to notifications on 
CodePlex.

To report a bug, request a feature, or add a comment, visit IronPython Issue 
Tracker. You can unsubscribe or change your issue notification settings on 
CodePlex.com.
_______________________________________________
Ironpython-users mailing list
Ironpython-users@python.org
http://mail.python.org/mailman/listinfo/ironpython-users

Reply via email to