Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common/files: logilab-common-0.60.0-skip-doctest.patch
Date: Mon, 02 Sep 2013 17:31:59
Message-Id: 20130902173152.548772004E@flycatcher.gentoo.org
1 floppym 13/09/02 17:31:52
2
3 Added: logilab-common-0.60.0-skip-doctest.patch
4 Log:
5 Fix deps and skip a faulty doctest.
6
7 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
8
9 Revision Changes Path
10 1.1 dev-python/logilab-common/files/logilab-common-0.60.0-skip-doctest.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/files/logilab-common-0.60.0-skip-doctest.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/files/logilab-common-0.60.0-skip-doctest.patch?rev=1.1&content-type=text/plain
14
15 Index: logilab-common-0.60.0-skip-doctest.patch
16 ===================================================================
17 http://www.logilab.org/ticket/174440
18 diff --git a/textutils.py b/textutils.py
19 --- a/textutils.py
20 +++ b/textutils.py
21 @@ -287,7 +287,7 @@
22 >>> text_to_dict('''multiple=1
23 ... multiple= 2
24 ... single =3
25 - ... ''')
26 + ... ''') # doctest: +SKIP
27 {'single': '3', 'multiple': ['1', '2']}
28
29 """