Mercurial > libervia-backend
comparison sat_frontends/quick_frontend/quick_games.py @ 3028:ab2696e34d29
Python 3 port:
/!\ this is a huge commit
/!\ starting from this commit, SàT is needs Python 3.6+
/!\ SàT maybe be instable or some feature may not work anymore, this will improve with time
This patch port backend, bridge and frontends to Python 3.
Roughly this has been done this way:
- 2to3 tools has been applied (with python 3.7)
- all references to python2 have been replaced with python3 (notably shebangs)
- fixed files not handled by 2to3 (notably the shell script)
- several manual fixes
- fixed issues reported by Python 3 that where not handled in Python 2
- replaced "async" with "async_" when needed (it's a reserved word from Python 3.7)
- replaced zope's "implements" with @implementer decorator
- temporary hack to handle data pickled in database, as str or bytes may be returned,
to be checked later
- fixed hash comparison for password
- removed some code which is not needed anymore with Python 3
- deactivated some code which needs to be checked (notably certificate validation)
- tested with jp, fixed reported issues until some basic commands worked
- ported Primitivus (after porting dependencies like urwid satext)
- more manual fixes
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 13 Aug 2019 19:08:41 +0200 |
parents | 003b8b4b56a7 |
children | 9d0df638c8b4 |
comparison
equal
deleted
inserted
replaced
3027:ff5bcb12ae60 | 3028:ab2696e34d29 |
---|---|
25 | 25 |
26 from sat_frontends.tools import jid | 26 from sat_frontends.tools import jid |
27 from sat_frontends.tools import games | 27 from sat_frontends.tools import games |
28 from sat_frontends.quick_frontend.constants import Const as C | 28 from sat_frontends.quick_frontend.constants import Const as C |
29 | 29 |
30 import quick_chat | 30 from . import quick_chat |
31 | 31 |
32 | 32 |
33 class RoomGame(object): | 33 class RoomGame(object): |
34 _game_name = None | 34 _game_name = None |
35 _signal_prefix = None | 35 _signal_prefix = None |
80 return # game panel is already there | 80 return # game panel is already there |
81 real_class = host.widgets.getRealClass(cls) | 81 real_class = host.widgets.getRealClass(cls) |
82 if real_class == cls: | 82 if real_class == cls: |
83 host.showDialog( | 83 host.showDialog( |
84 _( | 84 _( |
85 u"A {game} activity between {players} has been started, but you couldn't take part because your client doesn't support it." | 85 "A {game} activity between {players} has been started, but you couldn't take part because your client doesn't support it." |
86 ).format(game=cls._game_name, players=", ".join(players)), | 86 ).format(game=cls._game_name, players=", ".join(players)), |
87 _(u"{game} Game").format(game=cls._game_name), | 87 _("{game} Game").format(game=cls._game_name), |
88 ) | 88 ) |
89 return | 89 return |
90 panel = real_class(chat_widget, referee, players, *args) | 90 panel = real_class(chat_widget, referee, players, *args) |
91 chat_widget.games[cls._game_name] = panel | 91 chat_widget.games[cls._game_name] = panel |
92 chat_widget.addGamePanel(panel) | 92 chat_widget.addGamePanel(panel) |