|
From: <th...@us...> - 2014-10-17 07:27:47
|
Revision: 762
http://sourceforge.net/p/py2exe/svn/762
Author: theller
Date: 2014-10-17 07:27:39 +0000 (Fri, 17 Oct 2014)
Log Message:
-----------
Remove the PySide hook function.
Modified Paths:
--------------
trunk/py2exe-3/ChangeLog
trunk/py2exe-3/py2exe/hooks.py
Modified: trunk/py2exe-3/ChangeLog
===================================================================
--- trunk/py2exe-3/ChangeLog 2014-10-16 17:50:16 UTC (rev 761)
+++ trunk/py2exe-3/ChangeLog 2014-10-17 07:27:39 UTC (rev 762)
@@ -1,5 +1,14 @@
+2014-10-17 <th...@ct...>
+
+ * py2exe/hooks.py: Remove hook_pyside.
+
2014-10-16 <th...@ct...>
+ * zipextimporter.py (ZipExtensionImporter.load_module): Only catch
+ ImportError not Exception.
+
+2014-10-16 <th...@ct...>
+
* py2exe/boot_service.py: Fix bug in error handling code.
cmdline_style = "pywin32" should now work for services.
Modified: trunk/py2exe-3/py2exe/hooks.py
===================================================================
--- trunk/py2exe-3/py2exe/hooks.py 2014-10-16 17:50:16 UTC (rev 761)
+++ trunk/py2exe-3/py2exe/hooks.py 2014-10-17 07:27:39 UTC (rev 762)
@@ -164,9 +164,6 @@
finder.add_datadirectory("tcl", tcl_dir, recursive=True)
finder.set_min_bundle("tkinter", 2)
-def hook_PySide(finder, module):
- finder.set_min_bundle("PySide", 3)
-
def hook_six(finder, module):
"""six.py is a python2/python3 compatibility library. Exclude the
python2 modules.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|