diff options
author | Steven Knight <knight@baldmt.com> | 2001-09-26 13:46:18 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-09-26 13:46:18 (GMT) |
commit | ad5b73702125ef8deadf2231bb804e54ac128399 (patch) | |
tree | dd54eb9e13de5d37da463c6540ee04f5491773b7 /doc | |
parent | 7318c163cf3f9e5a3c17404ef8bec15454b9766b (diff) | |
download | SCons-ad5b73702125ef8deadf2231bb804e54ac128399.zip SCons-ad5b73702125ef8deadf2231bb804e54ac128399.tar.gz SCons-ad5b73702125ef8deadf2231bb804e54ac128399.tar.bz2 |
Change the env.Dictionary to an access method for an env._dict attribute.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/design/engine.sgml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/design/engine.sgml b/doc/design/engine.sgml index 3bb636b..92343bf 100644 --- a/doc/design/engine.sgml +++ b/doc/design/engine.sgml @@ -152,15 +152,6 @@ dict = env.Dictionary() </programlisting> -<REMARK> -In the current source code, I implemented this as a dictionary attribute -named <literal>Dictionary</literal>. While reasonably Pythonic, this -is ultimately Not Good. We don't want people using a reference to the -dictionary to change construction variables out from under an existing -environment. We should use an internal <literal>_dict</literal> -attribute and control access to it through a method, as specified above. -</REMARK> - <para> If any arguments are supplied, then just the corresponding value(s) |