diff --git a/.gitignore b/.gitignore
index 31cae64a..e012e982 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,11 @@
tests/individually-importing/*.py
+build/*
+data/cardsets/*
+data/html/*
+dist/*
+docs/all_games.html
+html-src/html/*
+locale/*
+po/pl.po
+po/ru.po
+*.pyc
diff --git a/html-src/rules/daddylonglegs.html b/html-src/rules/daddylonglegs.html
new file mode 100644
index 00000000..5a39b6a9
--- /dev/null
+++ b/html-src/rules/daddylonglegs.html
@@ -0,0 +1,14 @@
+
Daddy Longlegs
+Spider type. 1 deck. No redeal.
+Object
+Group all the cards into four sets of 13 cards by suit in ascending sequence from Ace to King.
+Rules
+Cards are dealt four at a time, one card into each of four piles. A card can be moved onto the end of another pile, if it is the same suit and follows in sequence. The rest of the pile moves with the card. Only an Ace (with the rest of its pile) can move to an empty space.
+At any time, you can deal more cards by clicking on the talon. One card will be added to each of the playing piles.
+History
+I created Daddy Longlegs in the early 1980's to amuse myself with a different solitaire variant. Over the years, I have implemented this game many times under the name of "Deal Four" as an exercise when learning new programming languages.
+I learned of pysol in 2006 and almost immediately realized that it is a perfect platform for Daddy Longlegs. Thank you, Markus Oberhumer!
+Author
+Jim Sizelove
+sizelji@comcast.net
+March 8, 2007
diff --git a/pysollib/app.py b/pysollib/app.py
index aed68817..afb5a2f8 100644
--- a/pysollib/app.py
+++ b/pysollib/app.py
@@ -63,7 +63,6 @@ from pysollib.actions import PysolMenubar
from pysollib.actions import PysolToolbar
from pysollib.help import help_about, destroy_help_html
-
# ************************************************************************
# * Statistics
# ************************************************************************
@@ -517,7 +516,7 @@ class Application:
self.nextgame.id, self.nextgame.random = 0, None
try:
self.runGame(id, random)
- except:
+ except Exception:
# try Klondike if current game fails
if id == 2:
raise # internal error?
diff --git a/pysollib/customgame.py b/pysollib/customgame.py
index 5e5c8fad..f9f61e1f 100644
--- a/pysollib/customgame.py
+++ b/pysollib/customgame.py
@@ -30,7 +30,6 @@ from pysollib.hint import AbstractHint, DefaultHint, CautiousDefaultHint, Yukon_
from pysollib.wizardutil import WizardWidgets
-
# ************************************************************************
# *
# ************************************************************************
diff --git a/pysollib/games/__init__.py b/pysollib/games/__init__.py
index ce23f9fe..2c9a629c 100644
--- a/pysollib/games/__init__.py
+++ b/pysollib/games/__init__.py
@@ -35,6 +35,7 @@ import camelot
import canfield
import capricieuse
import curdsandwhey
+import daddylonglegs
import dieboesesieben
import diplomat
import doublets
diff --git a/pysollib/games/calculation.py b/pysollib/games/calculation.py
index c9f7e309..24954bb8 100644
--- a/pysollib/games/calculation.py
+++ b/pysollib/games/calculation.py
@@ -1,33 +1,3 @@
-#!/usr/bin/env python
-# -*- mode: python; coding: utf-8; -*-
-##---------------------------------------------------------------------------##
-##
-## Copyright (C) 1998-2003 Markus Franz Xaver Johannes Oberhumer
-## Copyright (C) 2003 Mt. Hood Playing Card Co.
-## Copyright (C) 2005-2009 Skomoroh
-##
-## This program is free software: you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published by
-## the Free Software Foundation, either version 3 of the License, or
-## (at your option) any later version.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with this program. If not, see .
-##
-##---------------------------------------------------------------------------##
-
-__all__ = []
-
-# imports
-import sys
-
-# PySol imports
-from pysollib.mygettext import _, n_
from pysollib.gamedb import registerGame, GameInfo, GI
from pysollib.util import *
from pysollib.stack import *
diff --git a/pysollib/games/canfield.py b/pysollib/games/canfield.py
index 2c23faf9..589c111f 100644
--- a/pysollib/games/canfield.py
+++ b/pysollib/games/canfield.py
@@ -1,33 +1,3 @@
-#!/usr/bin/env python
-# -*- mode: python; coding: utf-8; -*-
-##---------------------------------------------------------------------------##
-##
-## Copyright (C) 1998-2003 Markus Franz Xaver Johannes Oberhumer
-## Copyright (C) 2003 Mt. Hood Playing Card Co.
-## Copyright (C) 2005-2009 Skomoroh
-##
-## This program is free software: you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published by
-## the Free Software Foundation, either version 3 of the License, or
-## (at your option) any later version.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with this program. If not, see .
-##
-##---------------------------------------------------------------------------##
-
-__all__ = []
-
-# imports
-import sys
-
-# PySol imports
-from pysollib.mygettext import _, n_
from pysollib.gamedb import registerGame, GameInfo, GI
from pysollib.util import *
from pysollib.stack import *
diff --git a/pysollib/games/daddylonglegs.py b/pysollib/games/daddylonglegs.py
new file mode 100644
index 00000000..00bdf45b
--- /dev/null
+++ b/pysollib/games/daddylonglegs.py
@@ -0,0 +1,57 @@
+## vim:ts=4:et:nowrap:fileencoding=utf-8
+##
+
+# imports
+import sys
+
+# PySol imports
+from pysollib.gamedb import registerGame, GameInfo, GI
+from pysollib.util import *
+from pysollib.stack import *
+from pysollib.game import Game
+from pysollib.layout import Layout
+
+
+#***********************************************************************
+# Daddy Longlegs (by Jim Sizelove)
+#***********************************************************************
+
+class DaddyLonglegs(Game):
+ Talon_Class = DealRowTalonStack
+ RowStack_Class = StackWrapper(Yukon_SS_RowStack, dir=1, base_rank=ACE)
+
+ def createGame(self, **layout):
+ # create layout
+ l, s = Layout(self), self.s
+
+ # set window
+ self.setSize(l.XM + 6*l.XS, l.YM + 7*l.YS)
+
+ # create stacks
+ x, y, = l.XM, l.YM
+ s.talon = self.Talon_Class(x, y, self)
+ l.createText(s.talon, "ss")
+ x = x + 3*l.XS/2
+ for i in range(4):
+ s.rows.append(self.RowStack_Class(x, y, self))
+ x = x + l.XS
+
+ # define stack-groups
+ l.defaultStackGroups()
+
+ def startGame(self):
+ self.s.talon.dealRow()
+
+ def isGameWon(self):
+ if self.s.talon.cards:
+ return 0
+ for row in self.s.rows:
+ if not isSameSuitSequence(row.cards, dir=1):
+ return 0
+ return 1
+
+
+# register the game
+registerGame(GameInfo(555001, DaddyLonglegs, "Daddy Longlegs",
+ GI.GT_SPIDER, 1, 0, GI.SL_MOSTLY_SKILL,
+ rules_filename="daddylonglegs.html"))
diff --git a/pysollib/hint.py b/pysollib/hint.py
index 15ee28c5..a68b79f2 100644
--- a/pysollib/hint.py
+++ b/pysollib/hint.py
@@ -33,7 +33,6 @@ from pysollib.settings import DEBUG, FCS_COMMAND
from pysollib.mfxutil import destruct
from pysollib.util import KING
-
# ************************************************************************
# * HintInterface is an abstract class that defines the public
# * interface - it only consists of the constructor
diff --git a/pysollib/images.py b/pysollib/images.py
index 622ac9bc..c4739cfa 100644
--- a/pysollib/images.py
+++ b/pysollib/images.py
@@ -34,7 +34,6 @@ from pysollib.mfxutil import Image, ImageTk, USE_PIL
# Toolkit imports
from pysollib.pysoltk import loadImage, copyImage, createImage, shadowImage, createBottom, resizeBottom
-
# ************************************************************************
# * Images
# ************************************************************************
diff --git a/pysollib/main.py b/pysollib/main.py
index 0e7b9192..3a1fc325 100644
--- a/pysollib/main.py
+++ b/pysollib/main.py
@@ -45,7 +45,6 @@ from pysollib.pysoltk import MfxMessageDialog
from pysollib.pysoltk import MfxRoot
from pysollib.pysoltk import PysolProgressBar
-
# ************************************************************************
# *
# ************************************************************************
diff --git a/pysollib/stack.py b/pysollib/stack.py
index 8904fc6a..4e5ae6f5 100644
--- a/pysollib/stack.py
+++ b/pysollib/stack.py
@@ -112,7 +112,6 @@ from pysollib.pysoltk import markImage
from pysollib.settings import TOOLKIT
from pysollib.settings import DEBUG
-
# ************************************************************************
# * Let's start with some test methods for cards.
# * Empty card-lists return false.
diff --git a/pysollib/wizardutil.py b/pysollib/wizardutil.py
index 57cd7bbd..3352d170 100644
--- a/pysollib/wizardutil.py
+++ b/pysollib/wizardutil.py
@@ -30,6 +30,7 @@ from pysollib.layout import Layout
from wizardpresets import presets
from pysollib.mygettext import _, n_
+
# ************************************************************************
# *
# ************************************************************************