[svn r63160] rename masterslave -> txnode

--HG--
branch : trunk
This commit is contained in:
hpk 2009-03-20 22:19:03 +01:00
parent 7b82c6bb27
commit 35aebfc775
4 changed files with 4 additions and 5 deletions

View File

@ -1,8 +1,7 @@
import py import py
import sys, os import sys, os
from py.__.test.dsession.masterslave import MasterNode from py.__.test.dsession.txnode import MasterNode
from py.__.execnet.gwmanage import GatewayManager from py.__.execnet.gwmanage import GatewayManager
from py.__.test import event
class NodeManager(object): class NodeManager(object):

View File

@ -1,6 +1,6 @@
import py import py
from py.__.test.dsession.dsession import DSession from py.__.test.dsession.dsession import DSession
from test_masterslave import EventQueue from test_txnode import EventQueue
class TestAsyncFunctional: class TestAsyncFunctional:
def test_conftest_options(self, testdir): def test_conftest_options(self, testdir):

View File

@ -1,6 +1,6 @@
import py import py
from py.__.test.dsession.masterslave import MasterNode from py.__.test.dsession.txnode import MasterNode
class EventQueue: class EventQueue:
def __init__(self, bus, queue=None): def __init__(self, bus, queue=None):

View File

@ -67,7 +67,7 @@ class MasterNode(object):
def install_slave(gateway, config): def install_slave(gateway, config):
channel = gateway.remote_exec(source=""" channel = gateway.remote_exec(source="""
from py.__.test.dsession.mypickle import PickleChannel from py.__.test.dsession.mypickle import PickleChannel
from py.__.test.dsession.masterslave import SlaveNode from py.__.test.dsession.txnode import SlaveNode
channel = PickleChannel(channel) channel = PickleChannel(channel)
slavenode = SlaveNode(channel) slavenode = SlaveNode(channel)
slavenode.run() slavenode.run()