- IDAPython 1.4.2: should work now with Python 2.7

- Hide the Python plugin from the plugins menu (it already installs the run statement functionality in the File menu)
This commit is contained in:
elias.bachaalany
2010-08-10 11:44:59 +00:00
parent 9858aae998
commit f216eb9a6d
3 changed files with 9 additions and 7 deletions

View File

@ -56,7 +56,7 @@ def runscript(script):
# -----------------------------------------------------------------------
def print_banner():
banner = [
"Python %d.%d.%d %s (serial %d) (c) 1990-2010 Python Software Foundation" % sys.version_info,
"Python %s " % sys.version,
"IDAPython" + (" 64-bit" if __EA64__ else "") + " v%d.%d.%d %s (serial %d) (c) The IDAPython Team <idapython@googlegroups.com>" % IDAPYTHON_VERSION
]
sepline = '-' * (max([len(s) for s in banner])+1)