Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorC. Scott Ananian <cscott@laptop.org>2008-09-24 19:54:59 (GMT)
committer C. Scott Ananian <cscott@laptop.org>2008-09-24 20:06:03 (GMT)
commit331ffd26eb6bb8521c53c01f0ffd55b175c1c621 (patch)
tree944c229d07b519d010dccd54e951bb5674b04e82
parent59ff7a87b63e209307e50ebba540f64dd588dcb6 (diff)
Add proper license header to the library files I wrote.
-rw-r--r--library/pippy/console.py4
-rw-r--r--library/pippy/game.py4
2 files changed, 8 insertions, 0 deletions
diff --git a/library/pippy/console.py b/library/pippy/console.py
index a3e8515..dcec56a 100644
--- a/library/pippy/console.py
+++ b/library/pippy/console.py
@@ -1,4 +1,8 @@
"""Console helpers for pippy."""
+# Copyright (C) 2007 One Laptop Per Child Association, Inc.
+# Licensed under the terms of the GNU GPL v2 or later; see
+# /usr/share/licenses/common-licenses/GPLv2+ for details.
+# Written by C. Scott Ananian <cscott@laptop.org>
import sys
def clear():
"""Clear screen on console."""
diff --git a/library/pippy/game.py b/library/pippy/game.py
index 03a51f4..a31e58a 100644
--- a/library/pippy/game.py
+++ b/library/pippy/game.py
@@ -1,4 +1,8 @@
"""pygame support for pippy."""
+# Copyright (C) 2007-8 One Laptop Per Child Association, Inc.
+# Licensed under the terms of the GNU GPL v2 or later; see
+# /usr/share/licenses/common-licenses/GPLv2+ for details.
+# Written by C. Scott Ananian <cscott@laptop.org>
def pause():
"""Display a "Paused" screen and suspend."""