twisted.internet.base._ThreePhaseEvent - python examples

Here are the examples of the python api twisted.internet.base._ThreePhaseEvent taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 View Complete Implementation : test_internet.py
Copyright MIT License
Author : wistbean
    def setUp(self):
        """
        Create a trigger, an argument, and an event to be used by tests.
        """
        self.trigger = lambda x: None
        self.arg = object()
        self.event = base._ThreePhaseEvent()