~mblayman/entertainer/clean-up-1.0

« back to all changes in this revision

Viewing changes to entertainerlib/gui/screens/screen.py

  • Committer: Paul Hummer
  • Date: 2009-05-10 17:36:49 UTC
  • mfrom: (363 entertainer-future)
  • mto: This revision was merged to the branch mainline in revision 364.
  • Revision ID: paul@eventuallyanyway.com-20090510173649-0odjpoqifn303t46
Merged from entertainer-future

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
'''Screen - Screen interface. All screens has to implement this interface!'''
2
 
 
3
 
__licence__ = "GPLv2"
4
 
__copyright__ = "2007, Lauri Taimila"
5
 
__author__ = "Lauri Taimila <lauri@taimila.com>"
 
1
# Copyright (c) 2009 Entertainer Developers - See COPYING - GPLv2
 
2
'''Screen - Screen interface. All screens have to implement this interface!'''
6
3
 
7
4
from collections import defaultdict
8
5