Commit 542d267798263a6eaae771ec3440d37882333008
1 parent
0d8d1a28
oledir, olemap: added comments for python 3 changes
Showing
2 changed files
with
5 additions
and
3 deletions
oletools/oledir.py
| ... | ... | @@ -43,7 +43,8 @@ http://www.decalage.info/python/oletools |
| 43 | 43 | # 2015-04-17 v0.01 PL: - first version |
| 44 | 44 | # 2015-04-21 v0.02 PL: - improved display with prettytable |
| 45 | 45 | # 2016-01-13 v0.03 PL: - replaced prettytable by tablestream, added colors |
| 46 | -# 2016-08-09 v0.50 PL: - fixed issue #77 (imports from thirdparty dir) | |
| 46 | +# 2016-07-20 v0.50 SL: - added Python 3 support | |
| 47 | +# 2016-08-09 PL: - fixed issue #77 (imports from thirdparty dir) | |
| 47 | 48 | |
| 48 | 49 | __version__ = '0.50' |
| 49 | 50 | ... | ... |
oletools/olemap.py
| ... | ... | @@ -13,7 +13,7 @@ http://www.decalage.info/python/oletools |
| 13 | 13 | |
| 14 | 14 | #=== LICENSE ================================================================== |
| 15 | 15 | |
| 16 | -# olemap is copyright (c) 2015 Philippe Lagadec (http://www.decalage.info) | |
| 16 | +# olemap is copyright (c) 2015-2016 Philippe Lagadec (http://www.decalage.info) | |
| 17 | 17 | # All rights reserved. |
| 18 | 18 | # |
| 19 | 19 | # Redistribution and use in source and binary forms, with or without modification, |
| ... | ... | @@ -41,8 +41,9 @@ http://www.decalage.info/python/oletools |
| 41 | 41 | # CHANGELOG: |
| 42 | 42 | # 2015-11-01 v0.01 PL: - first version |
| 43 | 43 | # 2016-01-13 v0.02 PL: - improved display with tablestream, added colors |
| 44 | +# 2016-07-20 v0.50 SL: - added Python 3 support | |
| 44 | 45 | |
| 45 | -__version__ = '0.02' | |
| 46 | +__version__ = '0.50' | |
| 46 | 47 | |
| 47 | 48 | #------------------------------------------------------------------------------ |
| 48 | 49 | # TODO: | ... | ... |