Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13168 - in main/trunk/pym/portage: . cache
Date: Mon, 23 Mar 2009 05:26:48
Message-Id: E1LlcgQ-0001iJ-Lt@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-03-23 05:26:45 +0000 (Mon, 23 Mar 2009)
3 New Revision: 13168
4
5 Modified:
6 main/trunk/pym/portage/__init__.py
7 main/trunk/pym/portage/cache/sqlite.py
8 Log:
9 Fix misc typos in comments.
10
11
12 Modified: main/trunk/pym/portage/__init__.py
13 ===================================================================
14 --- main/trunk/pym/portage/__init__.py 2009-03-23 02:22:50 UTC (rev 13167)
15 +++ main/trunk/pym/portage/__init__.py 2009-03-23 05:26:45 UTC (rev 13168)
16 @@ -5527,7 +5527,7 @@
17 for example.
18 @type fd_pipes: Dictionary
19 @param returnpid: Return a list of process IDs for a successful spawn, or
20 - in integer value if spawn is unsuccessful. NOTE: This requires the
21 + an integer value if spawn is unsuccessful. NOTE: This requires the
22 caller clean up all returned PIDs.
23 @type returnpid: Boolean
24 @rtype: Boolean
25
26 Modified: main/trunk/pym/portage/cache/sqlite.py
27 ===================================================================
28 --- main/trunk/pym/portage/cache/sqlite.py 2009-03-23 02:22:50 UTC (rev 13167)
29 +++ main/trunk/pym/portage/cache/sqlite.py 2009-03-23 05:26:45 UTC (rev 13168)
30 @@ -165,7 +165,7 @@
31 d[k] = result[0][column_index]
32
33 # As a temporary workaround for bug #263081, convert unicode strings
34 - # to raw byte strings. This helps to potential unicode errors that can
35 + # to raw byte strings. This avoids potential unicode errors that can
36 # be triggered elsewhere when attempting to join unicode strings with
37 # raw byte strings. TODO: Convert all string handling code to use
38 # unicode strings instead of raw byte strings (required for py3k