From 5c88aa87b824b34ca70ed65d86100148c95fc0b2 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Wed, 5 Apr 2017 14:35:33 -0700 Subject: remove duplicate definitions for to_bytes and to_str --- QMTest/TestCmd.py | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'QMTest') diff --git a/QMTest/TestCmd.py b/QMTest/TestCmd.py index 2c0c0d38..07a39056 100644 --- a/QMTest/TestCmd.py +++ b/QMTest/TestCmd.py @@ -737,16 +737,6 @@ class Popen(subprocess.Popen): setattr(self, which, None) - def to_bytes (s): - if isinstance (s, bytes) or bytes is str: - return s - return bytes (s, 'utf-8') - - def to_str (s): - if bytes is str or is_String(s): - return s - return str (s, 'utf-8') - if sys.platform == 'win32':# and subprocess.mswindows: def send(self, input): input = to_bytes(input) -- cgit v1.2.1