Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13154 - main/branches/2.1.6/pym/portage
Date: Mon, 23 Mar 2009 02:16:38
Message-Id: E1LlZiN-0003lX-Gq@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-03-23 02:16:34 +0000 (Mon, 23 Mar 2009)
3 New Revision: 13154
4
5 Modified:
6 main/branches/2.1.6/pym/portage/__init__.py
7 Log:
8 Add docstrings for the fd_pipes and returnpid parameters of doebuild().
9 (trunk r13135)
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 02:15:52 UTC (rev 13153)
14 +++ main/branches/2.1.6/pym/portage/__init__.py 2009-03-23 02:16:34 UTC (rev 13154)
15 @@ -5509,6 +5509,13 @@
16 @type vartree: vartree instance
17 @param prev_mtimes: A dict of { filename:mtime } keys used by merge() to do config_protection
18 @type prev_mtimes: dictionary
19 + @param fd_pipes: A dict of mapping for pipes, { '0': stdin, '1': stdout }
20 + for example.
21 + @type fd_pipes: Dictionary
22 + @param returnpid: Return a list of process IDs for a successful spawn, or
23 + in integer value if spawn is unsuccessful. NOTE: This requires the
24 + caller clean up all returned PIDs.
25 + @type returnpid: Boolean
26 @rtype: Boolean
27 @returns:
28 1. 0 for success