Commit 85140b505f5c39873aa7d21e63cedbc8cbab86a8

Authored by decalage2
1 parent 542d2677

oletimes, ppt_parser: added comments for python 3 changes

oletools/oletimes.py
@@ -16,7 +16,7 @@ http://www.decalage.info/python/oletools @@ -16,7 +16,7 @@ http://www.decalage.info/python/oletools
16 16
17 #=== LICENSE ================================================================= 17 #=== LICENSE =================================================================
18 18
19 -# oletimes is copyright (c) 2013-2015, Philippe Lagadec (http://www.decalage.info) 19 +# oletimes is copyright (c) 2013-2016, Philippe Lagadec (http://www.decalage.info)
20 # All rights reserved. 20 # All rights reserved.
21 # 21 #
22 # Redistribution and use in source and binary forms, with or without modification, 22 # Redistribution and use in source and binary forms, with or without modification,
@@ -46,8 +46,9 @@ http://www.decalage.info/python/oletools @@ -46,8 +46,9 @@ http://www.decalage.info/python/oletools
46 # 2014-11-29 v0.02 PL: - use olefile instead of OleFileIO_PL 46 # 2014-11-29 v0.02 PL: - use olefile instead of OleFileIO_PL
47 # - improved usage display 47 # - improved usage display
48 # 2014-11-30 v0.03 PL: - improved output with prettytable 48 # 2014-11-30 v0.03 PL: - improved output with prettytable
  49 +# 2016-07-20 v0.50 SL: - added Python 3 support
49 50
50 -__version__ = '0.03' 51 +__version__ = '0.50'
51 52
52 #------------------------------------------------------------------------------ 53 #------------------------------------------------------------------------------
53 # TODO: 54 # TODO:
oletools/ppt_parser.py
@@ -25,8 +25,9 @@ References: @@ -25,8 +25,9 @@ References:
25 # 25 #
26 # CHANGELOG: 26 # CHANGELOG:
27 # 2016-05-04 v0.01 CH: - start parsing "Current User" stream 27 # 2016-05-04 v0.01 CH: - start parsing "Current User" stream
  28 +# 2016-07-20 v0.50 SL: - added Python 3 support
28 29
29 -__version__ = '0.02' 30 +__version__ = '0.50'
30 31
31 32
32 #--- IMPORTS ------------------------------------------------------------------ 33 #--- IMPORTS ------------------------------------------------------------------