Roundup Tracker - Issues

Message6861

Author jerrykan
Recipients antmail, ber, jerrykan, rouilj
Date 2020-01-14.06:53:52
Message-id <1578984832.66.0.280374911361.issue2550612@roundup.psfhosted.org>
In-reply-to
A quick and dirty hack might be to replace:

    val = self[k]

with:

    val = self[k]
    val._value = self._klass.get(self._nodeid, k)


It would seem to solve the immediate probably... but probably not in the most desirable of ways :D

I'm open to suggestions that can avoid a large block of if/elif/else statements to handle all property type usecases.
History
Date User Action Args
2020-01-14 06:53:52jerrykansetmessageid: <1578984832.66.0.280374911361.issue2550612@roundup.psfhosted.org>
2020-01-14 06:53:52jerrykansetrecipients: + jerrykan, ber, rouilj, antmail
2020-01-14 06:53:52jerrykanlinkissue2550612 messages
2020-01-14 06:53:52jerrykancreate