Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10021 - main/branches/2.1.2/bin
Date: Mon, 28 Apr 2008 06:01:02
Message-Id: E1JqMQ8-0001rA-8V@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-04-28 06:00:59 +0000 (Mon, 28 Apr 2008)
3 New Revision: 10021
4
5 Modified:
6 main/branches/2.1.2/bin/emerge
7 Log:
8 Add comma to ("__weakref__",) so that it's a tuple instead of a string.
9 Thanks to ferringb. (trunk r10020)
10
11
12 Modified: main/branches/2.1.2/bin/emerge
13 ===================================================================
14 --- main/branches/2.1.2/bin/emerge 2008-04-28 06:00:11 UTC (rev 10020)
15 +++ main/branches/2.1.2/bin/emerge 2008-04-28 06:00:59 UTC (rev 10021)
16 @@ -993,7 +993,7 @@
17 yield flag
18
19 class SlotObject(object):
20 - __slots__ = ("__weakref__")
21 + __slots__ = ("__weakref__",)
22
23 def __init__(self, **kwargs):
24 classes = [self.__class__]
25
26 --
27 gentoo-commits@l.g.o mailing list