Add `# Copyright` tags to Python files
authorW. Trevor King <wking@tremily.us>
Tue, 5 Feb 2013 20:37:04 +0000 (15:37 -0500)
committerW. Trevor King <wking@tremily.us>
Tue, 5 Feb 2013 20:37:04 +0000 (15:37 -0500)
pq.py
quizzer/__init__.py
quizzer/answerdb.py
quizzer/cli.py
quizzer/error.py
quizzer/question.py
quizzer/quiz.py
quizzer/ui/__init__.py
quizzer/ui/cli.py
quizzer/util.py
setup.py

diff --git a/pq.py b/pq.py
index d595691aefbcef2afbd99be04f7dcb59090d3a08..d9fa51480c666611675052cd7933a111f1d8e6d8 100755 (executable)
--- a/pq.py
+++ b/pq.py
@@ -1,4 +1,6 @@
 #!/usr/bin/env python3.3
+#
+# Copyright
 
 import quizzer.cli
 
index c350f0f32229e60f4f3b7375b44217ce76761e1c..d388a77c9fc81ed23e611cff66b46c66b502e10e 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright
+
 """Break learning up into small task-based tests for focused study
 """
 
index 3b8aa6ccd8c798668f6a4959045f2de94c274bc4..7054057797607bb11ec5cc3f995b8eed2917da18 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright
+
 import codecs as _codecs
 import json as _json
 
index 4cf25f8b065889ff460b39a359ca6198e39aa727..419cce7e3fc55db4b183bcf1d5399e19f3fad477 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright
+
 import argparse as _argparse
 import locale as _locale
 
index f16be2413cb44ab0b5be63fadd6c53d47d387b2a..200951291743c0f214e5519bd8046732e3b92488 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright
+
 class CommandError (RuntimeError):
     def __init__(self, arguments, stdin=None, stdout=None, stderr=None,
                  status=None, msg=None):
index 64594cf14cfa2fbab6a5a6d3c90cd7a41a20ddc0..9970a2632eceb9efba2ccd175e09e1cae95e7637 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright
+
 import logging as _logging
 import os.path as _os_path
 import tempfile as _tempfile
index 7c49e941f1a9e3b559a250efaccba9afa43c67d8..381e9c39b31a1833bbc864f368d187b16c940558 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright
+
 import codecs as _codecs
 import json as _json
 
index caf2a71c713a845b4f115ab9ddbb41a0d4b96ab1..e41e13639c02bdedf87411bbb753a4fc51d20aef 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright
+
 from .. import answerdb as _answerdb
 
 
index d6590409eddfd415a4fe687f71c2d21593865ef6..604d481b3e235097de2eb8f5dc7cfad2b9f4a579 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright
+
 try:
     import readline as _readline
 except ImportError as _readline_import_error:
index a985631327b6bd27dfe4be7e3c0ab04f301a49bc..849891c04de15dd775334922e08f34875eb45362 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright
+
 import subprocess as _subprocess
 
 from . import error as _error
index 18529c5fc46581c8189b9f915366780b00c70af9..aef66a00efff5ff940efd1d2527dece1efe00f62 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,5 @@
+# Copyright
+
 "Break learning up into small task-based tests for focused study."
 
 import codecs as _codecs