From dac95989b4557e3194a21ce6160c2135acb3d73a Mon Sep 17 00:00:00 2001 From: "jai.s" Date: Mon, 15 Jun 2020 15:54:11 +0530 Subject: [PATCH] Initial commit for test cases python3 porting --- pybitmessage | 1 + src/tests/tests_compatibility/__init__.py | 0 src/tests/tests_compatibility/utils.py | 6 ++++++ 3 files changed, 7 insertions(+) create mode 120000 pybitmessage create mode 100755 src/tests/tests_compatibility/__init__.py create mode 100755 src/tests/tests_compatibility/utils.py diff --git a/pybitmessage b/pybitmessage new file mode 120000 index 00000000..e8310385 --- /dev/null +++ b/pybitmessage @@ -0,0 +1 @@ +src \ No newline at end of file diff --git a/src/tests/tests_compatibility/__init__.py b/src/tests/tests_compatibility/__init__.py new file mode 100755 index 00000000..e69de29b diff --git a/src/tests/tests_compatibility/utils.py b/src/tests/tests_compatibility/utils.py new file mode 100755 index 00000000..7fa8e676 --- /dev/null +++ b/src/tests/tests_compatibility/utils.py @@ -0,0 +1,6 @@ +''' +Encoded Methods +''' + +def encoded_string(instance): + return instance.encode('raw_unicode_escape') \ No newline at end of file