From d51d8b55753724b6f97650a92709f1e6ecf027d6 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Wed, 10 Mar 2021 21:56:47 +0100 Subject: [PATCH] filesystem: drop __main__ from filesystem.py The __main__ function in filesystem.py seems to be some experimental testcode from the very beginning of pySim-shell. Lets drop it. Change-Id: I34f459469dfc45711ad0928c83184d7f99e0f5e3 Related: OS#4963 --- pySim/filesystem.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/pySim/filesystem.py b/pySim/filesystem.py index f412d73b..d4688084 100644 --- a/pySim/filesystem.py +++ b/pySim/filesystem.py @@ -717,21 +717,3 @@ class CardProfile(object): """Interpret a given status word within the profile. Returns tuple of two strings""" return interpret_sw(self.sw, sw) - - -###################################################################### - -if __name__ == '__main__': - mf = CardMF() - - adf_usim = ADF('a0000000871002', name='ADF_USIM') - mf.add_application(adf_usim) - df_pb = CardDF('5f3a', name='DF.PHONEBOOK') - adf_usim.add_file(df_pb) - adf_usim.add_file(TransparentEF('6f05', name='EF.LI', size={2,16})) - adf_usim.add_file(TransparentEF('6f07', name='EF.IMSI', size={9,9})) - - rss = RuntimeState(mf, None) - - interp = code.InteractiveConsole(locals={'mf':mf, 'rss':rss}) - interp.interact()