# HG changeset patch # User Paul Boddie # Date 1373058802 -7200 # Node ID 0402f18ff296dbfd8fa3627b5b6bdc37ab7adabb # Parent e429e4ff3b9899a2a56f1732f6b9dfd932fe8f36 Improved the descriptions of access operations slightly. diff -r e429e4ff3b98 -r 0402f18ff296 docs/syspython.txt --- a/docs/syspython.txt Fri Jul 05 22:35:43 2013 +0200 +++ b/docs/syspython.txt Fri Jul 05 23:13:22 2013 +0200 @@ -190,31 +190,31 @@ # Instance-related operations: - loadattr(obj, attrname) # preserve context + loadattr(obj, attrname) # preserve retrieved context # Static attribute operations: - loadaddress(obj, attrname) # preserve context + loadaddress(parent, attrname) # preserve retrieved context loadaddresscontext(parent, attrname, obj) # replace context with obj loadaddresscontextcond(parent, attrname, obj) # run-time context decision # Unoptimised operations: - loadattrindex(obj, attrname) # preserve context + loadattrindex(obj, attrname) # preserve retrieved context loadattrindexcontextcond(obj, attrname) # run-time context decision # Instance-related operations: - storeattr(obj, attrname, value) # preserve context + storeattr(obj, attrname, value) # preserve context for value # Static attribute operations: - storeaddress(parent, attrname, value) # preserve context + storeaddress(parent, attrname, value) # preserve context for value storeaddresscontext(parent, attrname, value, obj) # replace context with obj # Unoptimised operations: - storeattrindex(obj, attrname, value) # preserve context + storeattrindex(obj, attrname, value) # preserve context for value Recall that for loadattrindex family functions, the location of the attribute is obtained from the object table and the nature of the attribute is