Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: third_party/twisted_8_1/twisted/test/plugin_extra2.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2005 Divmod, Inc.
2 # Copyright (c) 2007 Twisted Matrix Laboratories.
3 # See LICENSE for details.
4
5 """
6 Test plugin used in L{twisted.test.test_plugin}.
7 """
8
9 from zope.interface import classProvides
10
11 from twisted.plugin import IPlugin
12 from twisted.test.test_plugin import ITestPlugin
13
14
15
16 class FourthTestPlugin:
17 classProvides(ITestPlugin,
18 IPlugin)
19
20 def test1():
21 pass
22 test1 = staticmethod(test1)
23
24
25
26 class FifthTestPlugin:
27 """
28 More documentation: I hate you.
29 """
30 classProvides(ITestPlugin,
31 IPlugin)
32
33 def test1():
34 pass
35 test1 = staticmethod(test1)
OLDNEW
« no previous file with comments | « third_party/twisted_8_1/twisted/test/plugin_extra1.py ('k') | third_party/twisted_8_1/twisted/test/process_cmdline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698