python2Compatible flag added. release-5.3.0

Wed, 23 Apr 2014 23:25:05 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Wed, 23 Apr 2014 23:25:05 +0200
changeset 69
edd974cbe7b6
parent 68
2a1838192c65
child 70
370aea5f4b53

python2Compatible flag added.

ChangeLog file | annotate | diff | comparison | revisions
CxFreeze/CxfreezeConfigDialog.py file | annotate | diff | comparison | revisions
CxFreeze/CxfreezeExecDialog.py file | annotate | diff | comparison | revisions
PluginCxFreeze.py file | annotate | diff | comparison | revisions
PluginCxFreeze.zip file | annotate | diff | comparison | revisions
--- a/ChangeLog	Fri Jan 03 19:03:35 2014 +0100
+++ b/ChangeLog	Wed Apr 23 23:25:05 2014 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 5.3.0:
+- Python 2 compatibility flag
+
 Version 5.2.2:
 - bug fixes
 
--- a/CxFreeze/CxfreezeConfigDialog.py	Fri Jan 03 19:03:35 2014 +0100
+++ b/CxFreeze/CxfreezeConfigDialog.py	Wed Apr 23 23:25:05 2014 +0200
@@ -7,10 +7,10 @@
 Module implementing a dialog to enter the parameters for cxfreeze.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 try:
-    str = unicode   # __IGNORE_WARNING__
-except (NameError):
+    str = unicode
+except NameError:
     pass
 
 import sys
--- a/CxFreeze/CxfreezeExecDialog.py	Fri Jan 03 19:03:35 2014 +0100
+++ b/CxFreeze/CxfreezeExecDialog.py	Wed Apr 23 23:25:05 2014 +0200
@@ -7,10 +7,10 @@
 Module implementing a dialog to show the output of the packager process.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 try:
-    str = unicode   # __IGNORE_WARNING__
-except (NameError):
+    str = unicode
+except NameError:
     pass
 
 import shutil
--- a/PluginCxFreeze.py	Fri Jan 03 19:03:35 2014 +0100
+++ b/PluginCxFreeze.py	Wed Apr 23 23:25:05 2014 +0200
@@ -7,7 +7,7 @@
 Module implementing the CxFreeze plugin.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 
 import os
 import platform
@@ -34,7 +34,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "5.2.2"
+version = "5.3.0"
 className = "CxFreezePlugin"
 packageName = "CxFreeze"
 shortDescription = "Show the CxFreeze dialogs."
@@ -43,6 +43,7 @@
     """ CxFreeze is used to generate a distribution package."""
 needsRestart = False
 pyqtApi = 2
+python2Compatible = True
 # End-of-Header
 
 exePy2 = []
Binary file PluginCxFreeze.zip has changed

eric ide

mercurial