mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-31 20:50:53 +03:00
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
This commit is contained in:
@@ -717,21 +717,3 @@ class CardProfile(object):
|
|||||||
"""Interpret a given status word within the profile. Returns tuple of
|
"""Interpret a given status word within the profile. Returns tuple of
|
||||||
two strings"""
|
two strings"""
|
||||||
return interpret_sw(self.sw, sw)
|
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()
|
|
||||||
|
|||||||
Reference in New Issue
Block a user