diff options
author | MichaĆ Zimniewicz <michzimny@users.noreply.github.com> | 2016-11-25 18:23:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-25 18:23:01 +0100 |
commit | 29b99d5e50af876141187c7bdf52d663f3ac0807 (patch) | |
tree | 8628229e4a90c60f966de097079b2261e503e07e | |
parent | 0a27bbf9ce1f5b1a52bc62ff4d9e5c2f960b030c (diff) | |
parent | 70f771d2ab31847333b2c438466fe35895bc24db (diff) |
Merge pull request #7 from michzimny/porting_to_python2
Porting to python2
-rw-r--r-- | ql/completer.py | 10 | ||||
-rwxr-xr-x | ql/console.py | 8 | ||||
-rw-r--r-- | ql/lineup.py | 6 |
3 files changed, 19 insertions, 5 deletions
diff --git a/ql/completer.py b/ql/completer.py index a9b7d8d..89920d4 100644 --- a/ql/completer.py +++ b/ql/completer.py @@ -1,4 +1,5 @@ import readline
+import sys
class Completer(object):
@@ -10,8 +11,15 @@ class Completer(object): readline.set_completer_delims('') # allow options with whitespace
readline.parse_and_bind('tab: complete')
+ def __encode_completion_string(self, s):
+ try:
+ return s.encode(sys.stdin.encoding) if isinstance(s, unicode) else s
+ except NameError: # Python 3.x does not have a 'unicode' type
+ pass
+ return s
+
def __init__(self, options):
- self.options = options
+ self.options = [self.__encode_completion_string(s) for s in options]
def complete(self, text, state):
text = text.lower()
diff --git a/ql/console.py b/ql/console.py index 0c741ca..6751b83 100755 --- a/ql/console.py +++ b/ql/console.py @@ -21,7 +21,13 @@ class Console(object): def process_table(self, table):
lineup = self.get_lineup(table)
print(lineup.info)
- print()
+ print('')
+ # Python 2.x workaround
+ global input
+ try:
+ input = raw_input
+ except NameError:
+ pass # if raw_input is not defined (Python 3.x), ignore it
for team in lineup.teams:
Completer.install_new_completer(team.player_names)
for pair in team.pairs:
diff --git a/ql/lineup.py b/ql/lineup.py index b0d5847..688825b 100644 --- a/ql/lineup.py +++ b/ql/lineup.py @@ -38,7 +38,7 @@ class TeamInSegment(object): class HomeTeamInSegment(TeamInSegment):
def __init__(self, *args, **kwargs):
- super().__init__(*args, **kwargs)
+ super(HomeTeamInSegment, self).__init__(*args, **kwargs)
def get_paired_players_fields(self):
return [
@@ -56,7 +56,7 @@ class HomeTeamInSegment(TeamInSegment): class AwayTeamInSegment(TeamInSegment):
def __init__(self, *args, **kwargs):
- super().__init__(*args, **kwargs)
+ super(AwayTeamInSegment, self).__init__(*args, **kwargs)
def get_paired_players_fields(self):
return [
@@ -95,7 +95,7 @@ class Pair(object): return 'Team: %s - %s - %s' % (
self.team.name,
self.label,
- [ p.info if p is not None else '<blank>' for p in self.players ]
+ ', '.join([ p.info if p is not None else '<blank>' for p in self.players ])
)
def set_player(self, name):
|