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

Side by Side Diff: third_party/twisted_8_1/twisted/spread/interfaces.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 """
2 Twisted Spread Interfaces.
3
4 This module is unused so far. It's also undecided whether this module
5 will remain monolithic.
6 """
7
8 from zope.interface import Interface
9
10 class IJellyable(Interface):
11 def jellyFor(jellier):
12 """
13 Jelly myself for jellier.
14 """
15
16 class IUnjellyable(Interface):
17 def unjellyFor(jellier, jellyList):
18 """
19 Unjelly myself for the jellier.
20
21 @param jellier: A stateful object which exists for the lifetime of a
22 single call to L{unjelly}.
23
24 @param jellyList: The C{list} which represents the jellied state of the
25 object to be unjellied.
26
27 @return: The object which results from unjellying.
28 """
OLDNEW
« no previous file with comments | « third_party/twisted_8_1/twisted/spread/flavors.py ('k') | third_party/twisted_8_1/twisted/spread/jelly.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698