From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JblMw-0002SJ-Js for garchives@archives.gentoo.org; Tue, 18 Mar 2008 23:37:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5431E04F1; Tue, 18 Mar 2008 23:37:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 827DDE04F1 for ; Tue, 18 Mar 2008 23:37:21 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 0F4656679D for ; Tue, 18 Mar 2008 23:37:21 +0000 (UTC) Received: from genone by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JblMt-0000WI-EB for gentoo-commits@lists.gentoo.org; Tue, 18 Mar 2008 23:37:19 +0000 To: gentoo-commits@lists.gentoo.org From: "Marius Mauch (genone)" Subject: [gentoo-commits] portage r9479 - main/trunk/pym/portage X-VCS-Repository: portage X-VCS-Revision: 9479 X-VCS-Files: main/trunk/pym/portage/dep.py X-VCS-Directories: main/trunk/pym/portage X-VCS-Committer: genone X-VCS-Committer-Name: Marius Mauch Content-Type: text/plain; charset=UTF-8 Message-Id: Sender: Marius Mauch Date: Tue, 18 Mar 2008 23:37:19 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 9e9b9561-e9c4-4a93-8291-e6060718ab2f X-Archives-Hash: be252e260050a92d05f218fbad604eff Author: genone Date: 2008-03-18 23:37:18 +0000 (Tue, 18 Mar 2008) New Revision: 9479 Modified: main/trunk/pym/portage/dep.py Log: add @ to the list of invalid atom chars so sets with prefix aren't consid= ered as atoms accidentally Modified: main/trunk/pym/portage/dep.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- main/trunk/pym/portage/dep.py 2008-03-18 22:40:31 UTC (rev 9478) +++ main/trunk/pym/portage/dep.py 2008-03-18 23:37:18 UTC (rev 9479) @@ -454,7 +454,7 @@ open_bracket =3D depend.find( '[', open_bracket+1 ) return use_list =20 -_invalid_atom_chars_regexp =3D re.compile("[()|?]") +_invalid_atom_chars_regexp =3D re.compile("[()|?@]") =20 def isvalidatom(atom, allow_blockers=3DFalse): """ --=20 gentoo-commits@lists.gentoo.org mailing list