|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] Move definition of xc, to avoid confusing pylint.
# HG changeset patch
# User emellor@ewan
# Node ID fdc01adc11e06f0be44e521218872520d2a09d46
# Parent b54d922cb89736fa5e7b3e4becedc849ef35f589
Move definition of xc, to avoid confusing pylint.
Signed-off-by: Ewan Mellor <ewan@xxxxxxxxxxxxx>
diff -r b54d922cb897 -r fdc01adc11e0 tools/python/xen/xend/XendCheckpoint.py
--- a/tools/python/xen/xend/XendCheckpoint.py Tue Sep 20 16:24:27 2005
+++ b/tools/python/xen/xend/XendCheckpoint.py Tue Sep 20 16:25:00 2005
@@ -4,7 +4,6 @@
# Public License. See the file "COPYING" in the main directory of
# this archive for more details.
-import errno
import os
import re
import select
@@ -12,7 +11,7 @@
from string import join
from struct import pack, unpack, calcsize
from xen.util.xpopen import xPopen3
-import xen.lowlevel.xc; xc = xen.lowlevel.xc.new()
+import xen.lowlevel.xc
from xen.xend.xenstore.xsutil import IntroduceDomain
from XendError import XendError
@@ -24,6 +23,10 @@
sizeof_int = calcsize("i")
sizeof_unsigned_long = calcsize("L")
+
+
+xc = xen.lowlevel.xc.new()
+
def write_exact(fd, buf, errmsg):
if os.write(fd, buf) != len(buf):
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] Move definition of xc, to avoid confusing pylint.,
Xen patchbot -unstable <=
|
|
|
|
|