r47201 - posix importable stuff

hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org Sun, 10 Apr 2016 00:59:52 -0600 (MDT)
Newsgroups gmane.comp.python.twisted.commits
Message-ID <[email protected]>
Author: hawkowl
Date: Sun Apr 10 00:59:48 2016
New Revision: 47201

Modified:
   branches/oldstyle-internet-8281/twisted/internet/test/connectionmixins.py
   branches/oldstyle-internet-8281/twisted/internet/test/test_unix.py
   branches/oldstyle-internet-8281/twisted/internet/wxsupport.py

Log:
posix importable stuff

Modified: branches/oldstyle-internet-8281/twisted/internet/test/connectionmixins.py
==============================================================================
--- branches/oldstyle-internet-8281/twisted/internet/test/connectionmixins.py	(original)
+++ branches/oldstyle-internet-8281/twisted/internet/test/connectionmixins.py	Sun Apr 10 00:59:48 2016
@@ -90,7 +90,7 @@
 
 
 
-class EndpointCreator:
+class EndpointCreator(object):
     """
     Create client and server endpoints that know how to connect to each other.
     """

Modified: branches/oldstyle-internet-8281/twisted/internet/test/test_unix.py
==============================================================================
--- branches/oldstyle-internet-8281/twisted/internet/test/test_unix.py	(original)
+++ branches/oldstyle-internet-8281/twisted/internet/test/test_unix.py	Sun Apr 10 00:59:48 2016
@@ -52,7 +52,7 @@
 
 
 
-class UNIXFamilyMixin:
+class UNIXFamilyMixin(object):
     """
     Test-helper defining mixin for things related to AF_UNIX sockets.
     """

Modified: branches/oldstyle-internet-8281/twisted/internet/wxsupport.py
==============================================================================
--- branches/oldstyle-internet-8281/twisted/internet/wxsupport.py	(original)
+++ branches/oldstyle-internet-8281/twisted/internet/wxsupport.py	Sun Apr 10 00:59:48 2016
@@ -28,6 +28,7 @@
 
 
 
+@_oldStyle
 class wxRunner:
     """Make sure GUI events are handled."""