luigimarmo / psutil

Automatically exported from code.google.com/p/psutil
Other
0 stars 0 forks source link

Cached properties should be read only #454

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The currently aren't:

>>> p = psutil.Process()
>>> p.create_time
1386439824.47
>>> p.create_time = 3
>>> p.create_time
3
>>> 

Original issue reported on code.google.com by g.rodola on 7 Dec 2013 at 6:11

GoogleCodeExporter commented 8 years ago
Fixed in revision 786f1173bb0a.

Original comment by g.rodola on 7 Dec 2013 at 7:33

GoogleCodeExporter commented 8 years ago
No longer valid as we got rid of class properties.

Original comment by g.rodola on 31 Jan 2014 at 11:36