Change in pysim[master]: Introduce function for converting bytes list in (hex or int) to string

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

laforge gerrit-no-reply at lists.osmocom.org
Mon May 11 17:25:33 UTC 2020


laforge has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/18195 )

Change subject: Introduce function for converting bytes list in (hex or int) to string
......................................................................

Introduce function for converting bytes list in (hex or int) to string

This function is needed for conversion of bytes list output of TLV parser to representable string

Change-Id: I8c1e39ccf9fb517d465e73f69c720e7fdde02ded
---
M pySim/utils.py
1 file changed, 4 insertions(+), 0 deletions(-)

Approvals:
  Jenkins Builder: Verified
  fixeria: Looks good to me, approved



diff --git a/pySim/utils.py b/pySim/utils.py
index eb7a56b..ee4d2f3 100644
--- a/pySim/utils.py
+++ b/pySim/utils.py
@@ -40,6 +40,10 @@
 def s2h(s):
 	return b2h(s)
 
+# List of bytes to string
+def i2s(s):
+	return ''.join([chr(x) for x in s])
+
 def swap_nibbles(s):
 	return ''.join([x+y for x,y in zip(s[1::2], s[0::2])])
 

-- 
To view, visit https://gerrit.osmocom.org/c/pysim/+/18195
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I8c1e39ccf9fb517d465e73f69c720e7fdde02ded
Gerrit-Change-Number: 18195
Gerrit-PatchSet: 2
Gerrit-Owner: herlesupreeth <herlesupreeth at gmail.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <axilirator at gmail.com>
Gerrit-Reviewer: herlesupreeth <herlesupreeth at gmail.com>
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200511/1baa14bf/attachment.htm>


More information about the gerrit-log mailing list