Message12127

Author psykiatris
Recipients Arfrever, jeff.allen, psykiatris, zyasoft
Date 2018-09-28.13:46:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1538142410.26.0.545547206417.issue2305@psf.upfronthosting.co.za>
In-reply-to
Content
A side question: In SystemState.java, the following code, does it remove the deleted attribute?
====
public void __delattr__(String name) {
        checkMustExist(name);
        PyObject ret = getType().lookup(name); // xxx fix fix fix
        if (ret != null) {
            ret._doset(this, PyAttributeDeleted.INSTANCE);
        }
=============
This metod is executed once, and i thought it was part of a loop that should go through the rest of the __dict__ to remove other attrubytes tgat were set as deleted.

Also, I've noticed that using the -c option appears to not tell the program it is NOT interactive (meaning the interactive is set to true). So, if it believes it's interactive, then the ps* would display, right? 

I will examine dir() and __rawdir__ more closely. Thanks for being patient.
History
Date User Action Args
2018-09-28 13:46:50psykiatrissetmessageid: <1538142410.26.0.545547206417.issue2305@psf.upfronthosting.co.za>
2018-09-28 13:46:50psykiatrissetrecipients: + psykiatris, zyasoft, jeff.allen, Arfrever
2018-09-28 13:46:50psykiatrislinkissue2305 messages
2018-09-28 13:46:49psykiatriscreate