Message12127
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. |
|
Date |
User |
Action |
Args |
2018-09-28 13:46:50 | psykiatris | set | messageid: <1538142410.26.0.545547206417.issue2305@psf.upfronthosting.co.za> |
2018-09-28 13:46:50 | psykiatris | set | recipients:
+ psykiatris, zyasoft, jeff.allen, Arfrever |
2018-09-28 13:46:50 | psykiatris | link | issue2305 messages |
2018-09-28 13:46:49 | psykiatris | create | |
|