This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2011 Johan Rydberg <[email protected]> | |
# Released under the Apache 2.0 license. | |
"""Simple hack to pack together a ukijs application into a single file.""" | |
import re | |
import os | |
import cssutils | |
import base64 | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from twisted.internet import task | |
from twisted.trial import unittest | |
class Bully(object): | |
state = 'unknown' | |
callID = None | |
def __init__(self, clock, node_id, transport, service): | |
self.clock = clock |
NewerOlder