comparison gamelib/tests/game_logic_utils.py @ 528:0ce08d5e2acb

pyflakes-induced cleanup.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 10 Sep 2010 18:47:17 +0200
parents 6ef7cc57b94b
children 49b6a3d31ee7
comparison
equal deleted inserted replaced
527:6ef7cc57b94b 528:0ce08d5e2acb
1 import unittest 1 import unittest
2 2
3 import pygame
4 from pygame.locals import SWSURFACE
5
6 from gamelib import state 3 from gamelib import state
7 from gamelib.constants import SCREEN
8 4
9 5
10 # Monkey-patch albow.resource.get_image to not do alpha-conversion, 6 # Monkey-patch albow.resource.get_image to not do alpha-conversion,
11 # which would require pygame display intialisation, which we don't 7 # which would require pygame display intialisation, which we don't
12 # really want in the tests. 8 # really want in the tests.