summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data.py
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2014-08-20 08:23:27 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-25 08:57:45 +0100
commit6d08e5bb09293c03d8953831888c64d8eca889bf (patch)
tree7a2d7dff6f1db1324d84204a4c63669f59d23761 /bitbake/lib/bb/data.py
parent91083de4cb03bcb279ede3024cd2660b6c653808 (diff)
downloadpoky-6d08e5bb09293c03d8953831888c64d8eca889bf.tar.gz
bitbake: lib/bb/*.py: Typo fixes/grammar/comment fixes, nothing functional.
(Bitbake rev: 587b144ee409d444494d8d7f2d1c53ede8f7c953) Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/data.py')
-rw-r--r--bitbake/lib/bb/data.py6
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
6Functions for interacting with the data structure used by the 6Functions for interacting with the data structure used by the
7BitBake build tools. 7BitBake build tools.
8 8
9The expandData and update_data are the most expensive 9The expandKeys and update_data are the most expensive
10operations. At night the cookie monster came by and 10operations. At night the cookie monster came by and
11suggested 'give me cookies on setting the variables and 11suggested 'give me cookies on setting the variables and
12things will work out'. Taking this suggestion into account 12things will work out'. Taking this suggestion into account
@@ -15,7 +15,7 @@ Analyse von Algorithmen' lecture and the cookie
15monster seems to be right. We will track setVar more carefully 15monster seems to be right. We will track setVar more carefully
16to have faster update_data and expandKeys operations. 16to have faster update_data and expandKeys operations.
17 17
18This is a treade-off between speed and memory again but 18This is a trade-off between speed and memory again but
19the speed is more critical here. 19the 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
40import sys, os, re 40import sys, os, re
41if sys.argv[0][-5:] == "pydoc": 41if sys.argv[0][-5:] == "pydoc":