mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
Updated copyright dates and email address
This commit is contained in:
+3
-3
@@ -1,13 +1,13 @@
|
||||
#------------------------------------------------------------
|
||||
#---------------------------------------------------------------------
|
||||
# IDAPython - Python plugin for Interactive Disassembler Pro
|
||||
#
|
||||
# Copyright (c) 2004-2009 Gergely Erdelyi <dyce@d-dome.net>
|
||||
# Copyright (c) 2004-2010 Gergely Erdelyi <gergely.erdelyi@d-dome.net>
|
||||
#
|
||||
# All rights reserved.
|
||||
#
|
||||
# For detailed copyright information see the file COPYING in
|
||||
# the root of the distribution archive.
|
||||
#------------------------------------------------------------
|
||||
#---------------------------------------------------------------------
|
||||
"""
|
||||
idautils.py - High level utility functions for IDA
|
||||
"""
|
||||
|
||||
+5
-5
@@ -1,20 +1,20 @@
|
||||
#!/usr/bin/env python
|
||||
#------------------------------------------------------------
|
||||
#---------------------------------------------------------------------
|
||||
# IDAPython - Python plugin for Interactive Disassembler Pro
|
||||
#
|
||||
# Original IDC.IDC:
|
||||
# Copyright (c) 1990-2009 Ilfak Guilfanov
|
||||
# Copyright (c) 1990-2010 Ilfak Guilfanov
|
||||
#
|
||||
# Python conversion:
|
||||
# Copyright (c) 2004-2009 Gergely Erdelyi <dyce@d-dome.net>
|
||||
# Copyright (c) 2004-2010 Gergely Erdelyi <gergely.erdelyi@d-dome.net>
|
||||
#
|
||||
# All rights reserved.
|
||||
#
|
||||
# For detailed copyright information see the file COPYING in
|
||||
# the root of the distribution archive.
|
||||
#------------------------------------------------------------
|
||||
#---------------------------------------------------------------------
|
||||
# idc.py - IDC compatibility module
|
||||
#------------------------------------------------------------
|
||||
#---------------------------------------------------------------------
|
||||
"""
|
||||
IDC compatibility module
|
||||
|
||||
|
||||
+3
-3
@@ -2,7 +2,7 @@
|
||||
# -----------------------------------------------------------------------
|
||||
# IDAPython - Python plugin for Interactive Disassembler Pro
|
||||
#
|
||||
# Copyright (c) 2004-2009 Gergely Erdelyi <dyce@d-dome.net>
|
||||
# Copyright (c) 2004-2010 Gergely Erdelyi <gergely.erdelyi@d-dome.net>
|
||||
#
|
||||
# All rights reserved.
|
||||
#
|
||||
@@ -84,10 +84,10 @@ def runscript(script):
|
||||
def print_banner():
|
||||
banner = [
|
||||
"Python interpreter version %d.%d.%d %s (serial %d)" % sys.version_info,
|
||||
"Copyright (c) 1990-2009 Python Software Foundation - http://www.python.org/",
|
||||
"Copyright (c) 1990-2010 Python Software Foundation - http://www.python.org/",
|
||||
"",
|
||||
"IDAPython" + (" 64-bit" if __EA64__ else "") + " version %d.%d.%d %s (serial %d)" % IDAPYTHON_VERSION,
|
||||
"Copyright (c) 2004-2009 Gergely Erdelyi - http://d-dome.net/idapython/"
|
||||
"Copyright (c) 2004-2010 Gergely Erdelyi - http://code.google.com/p/idapython/"
|
||||
]
|
||||
sepline = '-' * max([len(s) for s in banner])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user