diff options
Diffstat (limited to 'bitbake/lib/bb/data.py')
-rw-r--r-- | bitbake/lib/bb/data.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py index db938be1e6..3d776b32bf 100644 --- a/bitbake/lib/bb/data.py +++ b/bitbake/lib/bb/data.py | |||
@@ -6,7 +6,7 @@ BitBake 'Data' implementations | |||
6 | Functions for interacting with the data structure used by the | 6 | Functions for interacting with the data structure used by the |
7 | BitBake build tools. | 7 | BitBake build tools. |
8 | 8 | ||
9 | The expandData and update_data are the most expensive | 9 | The expandKeys and update_data are the most expensive |
10 | operations. At night the cookie monster came by and | 10 | operations. At night the cookie monster came by and |
11 | suggested 'give me cookies on setting the variables and | 11 | suggested 'give me cookies on setting the variables and |
12 | things will work out'. Taking this suggestion into account | 12 | things will work out'. Taking this suggestion into account |
@@ -15,7 +15,7 @@ Analyse von Algorithmen' lecture and the cookie | |||
15 | monster seems to be right. We will track setVar more carefully | 15 | monster seems to be right. We will track setVar more carefully |
16 | to have faster update_data and expandKeys operations. | 16 | to have faster update_data and expandKeys operations. |
17 | 17 | ||
18 | This is a treade-off between speed and memory again but | 18 | This is a trade-off between speed and memory again but |
19 | the speed is more critical here. | 19 | the speed is more critical here. |
20 | """ | 20 | """ |
21 | 21 | ||
@@ -35,7 +35,7 @@ the speed is more critical here. | |||
35 | # with this program; if not, write to the Free Software Foundation, Inc., | 35 | # with this program; if not, write to the Free Software Foundation, Inc., |
36 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 36 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
37 | # | 37 | # |
38 | #Based on functions from the base bb module, Copyright 2003 Holger Schurig | 38 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig |
39 | 39 | ||
40 | import sys, os, re | 40 | import sys, os, re |
41 | if sys.argv[0][-5:] == "pydoc": | 41 | if sys.argv[0][-5:] == "pydoc": |