WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-3.4-testing] xend: disallow ! as a sxp separator

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-3.4-testing] xend: disallow ! as a sxp separator
From: "Xen patchbot-3.4-testing" <patchbot-3.4-testing@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 28 Oct 2009 04:06:01 -0700
Delivery-date: Wed, 28 Oct 2009 04:06:41 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1256727762 0
# Node ID ec5ae0f0e74de594c3b4b14ab372b943f979d920
# Parent  522b1808050b37e592d2c82eb3e5f8dd16008301
xend: disallow ! as a sxp separator

Signed-off-by: Jim Fehlig <jfehlig@xxxxxxxxxx>
xen-unstable changeset:   20379:47136dbb972d
xen-unstable date:        Wed Oct 28 10:59:55 2009 +0000
---
 tools/python/xen/xend/sxp.py |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -r 522b1808050b -r ec5ae0f0e74d tools/python/xen/xend/sxp.py
--- a/tools/python/xen/xend/sxp.py      Wed Oct 28 11:02:22 2009 +0000
+++ b/tools/python/xen/xend/sxp.py      Wed Oct 28 11:02:42 2009 +0000
@@ -142,7 +142,7 @@ class Parser:
         return self.in_class(c, ' \t\n\v\f\r')
 
     def is_separator(self, c):
-        return self.in_class(c, '{}()<>[]!;')
+        return self.in_class(c, '{}()<>[];')
 
     def in_comment_class(self, c):
         return self.in_class(c, '#')

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-3.4-testing] xend: disallow ! as a sxp separator, Xen patchbot-3.4-testing <=