source:
ralphm-patches/py3-iwokkel.patch
@
78:361e2111a663
Last change on this file since 78:361e2111a663 was 78:361e2111a663, checked in by Ralph Meijer <ralphm@…>, 6 years ago | |
---|---|
File size: 1.1 KB |
-
wokkel/iwokkel.py
# HG changeset patch # Parent 14d563f20f98e4555804c911fbd129ec1a130ff6 diff --git a/wokkel/iwokkel.py b/wokkel/iwokkel.py
a b 7 7 Wokkel interfaces. 8 8 """ 9 9 10 __all__ = ['IXMPPHandler', 'IXMPPHandlerCollection', 11 'IPubSubClient', 'IPubSubService', 'IPubSubResource', 12 'IMUCClient', 'IMUCStatuses'] 10 from __future__ import division, absolute_import 13 11 14 12 from zope.interface import Interface 15 13 from twisted.python.deprecate import deprecatedModuleAttribute … … 982 980 """ 983 981 Return the number of status conditions. 984 982 """ 983 984 985 986 __all__ = ['IXMPPHandler', 'IXMPPHandlerCollection', 987 'IPubSubClient', 'IPubSubService', 'IPubSubResource', 988 'IMUCClient', 'IMUCStatuses'] -
wokkel/test/test_iwokkel.py
diff --git a/wokkel/test/test_iwokkel.py b/wokkel/test/test_iwokkel.py
a b 5 5 Tests for L{wokkel.iwokkel} 6 6 """ 7 7 8 from __future__ import division, absolute_import 9 8 10 from twisted.trial import unittest 9 11 10 12 class DeprecationTest(unittest.TestCase):
Note: See TracBrowser
for help on using the repository browser.