summaryrefslogtreecommitdiffstats
path: root/execnet-debugfilename.patch
diff options
context:
space:
mode:
authorThomas Moschny <thm@fedoraproject.org>2012-06-22 20:45:43 +0200
committerThomas Moschny <thm@fedoraproject.org>2012-06-22 20:45:43 +0200
commit5d907ffe2c0f16b3fdfb4a3f107f2890f12e43ad (patch)
treed90568f702d9704e8a28414e116da5dd6cfc9c5f /execnet-debugfilename.patch
parent708a39949cd5e73c3f63dcdde9f1a594da77205b (diff)
downloadpython-execnet-5d907ffe2c0f16b3fdfb4a3f107f2890f12e43ad.tar.gz
python-execnet-5d907ffe2c0f16b3fdfb4a3f107f2890f12e43ad.tar.xz
python-execnet-5d907ffe2c0f16b3fdfb4a3f107f2890f12e43ad.zip
Update to 1.1.
- Update description. - Remove patch applied upstream.
Diffstat (limited to 'execnet-debugfilename.patch')
-rw-r--r--execnet-debugfilename.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/execnet-debugfilename.patch b/execnet-debugfilename.patch
deleted file mode 100644
index ac84a76..0000000
--- a/execnet-debugfilename.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -r 8900be7ee856 -r 1a63deea3424 testing/test_gateway.py
---- a/testing/test_gateway.py Mon Oct 24 18:03:24 2011 +0200
-+++ b/testing/test_gateway.py Sat Nov 19 07:24:11 2011 +0000
-@@ -350,8 +350,11 @@
- monkeypatch.setenv("TEMP", tmpdir) # windows
- monkeypatch.setenv('EXECNET_DEBUG', "1")
- gw = execnet.makegateway("popen")
-- pid = gw.remote_exec("import os ; channel.send(os.getpid())").receive()
-- slavefile = tmpdir.join("execnet-debug-%s" % pid)
-+ # hack out the debuffilename
-+ fn = gw.remote_exec(
-+ "import execnet;channel.send(execnet.gateway_base.fn)"
-+ ).receive()
-+ slavefile = py.path.local(fn)
- assert slavefile.check()
- slave_line = "creating slavegateway"
- for line in slavefile.readlines():