r47117 - fix some stuff
hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org Thu, 31 Mar 2016 03:01:15 -0600 (MDT)
| Newsgroups | gmane.comp.python.twisted.commits |
|---|---|
| Message-ID | <[email protected]> |
Author: hawkowl
Date: Thu Mar 31 03:01:10 2016
New Revision: 47117
Modified:
branches/oldstyle-decorator-8244/admin/run-python3-tests
branches/oldstyle-decorator-8244/twisted/test/test_nooldstyle.py
Log:
fix some stuff
Modified: branches/oldstyle-decorator-8244/admin/run-python3-tests
==============================================================================
--- branches/oldstyle-decorator-8244/admin/run-python3-tests (original)
+++ branches/oldstyle-decorator-8244/admin/run-python3-tests Thu Mar 31 03:01:10 2016
@@ -17,9 +17,7 @@
testModules = []
extraArguments = []
installed = False
-twistedPath = os.path.join(
- os.path.abspath(os.path.dirname(os.path.dirname(sys.argv[0]))),
- "src")
+twistedPath = os.path.abspath(os.path.dirname(os.path.dirname(sys.argv[0])))
for argument in sys.argv[1:]:
Modified: branches/oldstyle-decorator-8244/twisted/test/test_nooldstyle.py
==============================================================================
--- branches/oldstyle-decorator-8244/twisted/test/test_nooldstyle.py (original)
+++ branches/oldstyle-decorator-8244/twisted/test/test_nooldstyle.py Thu Mar 31 03:01:10 2016
@@ -99,7 +99,6 @@
On Python 3 or on Py2 when C{TWISTED_NEWSTYLE} is not set, L{_oldStyle}
is a no-op.
"""
- print(_oldstyle._oldStyle)
updatedClass = _oldstyle._oldStyle(SomeOldStyleClass)
self.assertEqual(type(updatedClass), type(SomeOldStyleClass))
self.assertIs(updatedClass, SomeOldStyleClass)