mailr17812 - /trunk/compat.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on October 15, 2012 - 15:27:
Author: bugman
Date: Mon Oct 15 15:27:08 2012
New Revision: 17812

URL: http://svn.gna.org/viewcvs/relax?rev=17812&view=rev
Log:
Python 3 fix for the compat module - the Queue2 object needs to always be 
defined.


Modified:
    trunk/compat.py

Modified: trunk/compat.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/compat.py?rev=17812&r1=17811&r2=17812&view=diff
==============================================================================
--- trunk/compat.py (original)
+++ trunk/compat.py Mon Oct 15 15:27:08 2012
@@ -31,6 +31,7 @@
     from Queue import Queue as Queue2
 else:
     from queue import Queue as Queue3
+    Queue2 = Queue3
 import threading
 
 




Related Messages


Powered by MHonArc, Updated Mon Oct 15 16:40:02 2012