~alecu/ubuntu-sso-client/broken-signals-questionmark

« back to all changes in this revision

Viewing changes to ubuntu_sso/qt/tests/show_gui.py

  • Committer: Tarmac
  • Author(s): Manuel de la Pena
  • Date: 2011-06-20 18:01:41 UTC
  • mfrom: (712.1.13 use_txnamedpipes)
  • Revision ID: tarmac-20110620180141-tlsci0sgp2532y3v
Moved the windows port to use txnamedpipes (can be found at lp:txnamedpipes). This change allows the windows port to perform the IPC through named pipes using a IOCPReactor implementation. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# with this program.  If not, see <http://www.gnu.org/licenses/>.
17
17
"""Script that shows the qt gui."""
18
18
 
 
19
# pylint: disable=F0401, E1101
 
20
from txnamedpipes import reactor
 
21
reactor.install()
19
22
from twisted.internet import reactor
20
23
from twisted.internet.defer import inlineCallbacks
21
24
from ubuntu_sso.main.windows import UbuntuSSOClient
32
35
 
33
36
if __name__ == '__main__':
34
37
    main()
35
 
    # pylint: disable=E1101
36
38
    reactor.run()