Gentoo Archives: gentoo-commits

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