1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

2to3 on pysollib/games/[a-g]*.py

This commit is contained in:
Shlomi Fish 2017-05-13 21:28:03 +03:00
parent d3fe875a49
commit 4670d04619
4 changed files with 5 additions and 4 deletions

View file

@ -32,7 +32,7 @@ from pysollib.layout import Layout
from pysollib.hint import CautiousDefaultHint
from pysollib.pysoltk import MfxCanvasText
from canfield import Canfield_Hint
from pysollib.games.canfield import Canfield_Hint
from pysollib.util import ANY_RANK, RANKS

View file

@ -34,7 +34,7 @@ from pysollib.layout import Layout
from pysollib.hint import AbstractHint, DefaultHint, CautiousDefaultHint
from pysollib.hint import BlackHoleSolverWrapper
from pysollib.pysoltk import MfxCanvasText
from pileon import FourByFour_Hint
from pysollib.games.pileon import FourByFour_Hint
from pysollib.util import ACE, ANY_RANK, ANY_SUIT, KING, NO_RANK, RANKS, \
SUITS, \

View file

@ -459,7 +459,7 @@ class BigBen(Game):
def _shuffleHook(self, cards):
# move clock cards to top of the Talon (i.e. first cards to be dealt)
C, S, H, D = range(4) # suits
C, S, H, D = list(range(4)) # suits
t = [(1, C), (2, H), (3, S), (4, D), (5, C), (6, H),
(7, S), (8, D), (9, C), (JACK, H), (QUEEN, S), (KING, D)]
clocks = []

View file

@ -32,7 +32,8 @@ from pysollib.game import Game
from pysollib.layout import Layout
from pysollib.hint import KlondikeType_Hint, YukonType_Hint
from spider import Spider_SS_Foundation, Spider_RowStack, Spider_Hint
from pysollib.games.spider import Spider_SS_Foundation, \
Spider_RowStack, Spider_Hint
from pysollib.util import ACE, ANY_SUIT, KING, UNLIMITED_ACCEPTS, \
UNLIMITED_MOVES