summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Richter <stephan.richter@gmail.com>2004-07-16 07:54:40 +0000
committerStephan Richter <stephan.richter@gmail.com>2004-07-16 07:54:40 +0000
commit655a0da588e4aebfa722959b6c84301c4281044b (patch)
tree629057573535b24831a67cf42ddded73203a01fc
parent082279fc1ea4c99b65e15e53974a8c9fa6383d7f (diff)
downloadzope-tal-655a0da588e4aebfa722959b6c84301c4281044b.tar.gz
Made sure that all module doc strings have an $Id$ tag. While doing this
I discovered several packages that did not have a doc string at all.
-rw-r--r--driver.py2
-rw-r--r--interfaces.py3
-rw-r--r--ndiff.py2
-rw-r--r--setpath.py2
-rw-r--r--talgettext.py2
-rw-r--r--tests/markbench.py5
-rw-r--r--tests/test_sourcepos.py4
-rw-r--r--tests/test_talgettext.py4
-rw-r--r--tests/utils.py4
9 files changed, 23 insertions, 5 deletions
diff --git a/driver.py b/driver.py
index e06b9b3..033e28a 100644
--- a/driver.py
+++ b/driver.py
@@ -35,6 +35,8 @@ Options:
Leave I18N substitution strings un-interpolated.
-a
Enable source annotations
+
+$Id$
"""
import os
diff --git a/interfaces.py b/interfaces.py
index 74fc3ea..58dcc1e 100644
--- a/interfaces.py
+++ b/interfaces.py
@@ -13,8 +13,9 @@
##############################################################################
"""Interface that a TAL expression implementation provides to the METAL/TAL
implementation.
-"""
+$Id$
+"""
from zope.interface import Attribute, Interface
diff --git a/ndiff.py b/ndiff.py
index 85dd8de..5c644c6 100644
--- a/ndiff.py
+++ b/ndiff.py
@@ -54,6 +54,8 @@ recovered by piping the output through
sed -n '/^[+ ] /s/^..//p'
See module comments for details and programmatic interface.
+
+$Id$
"""
__version__ = 1, 5, 0
diff --git a/setpath.py b/setpath.py
index a8037ce..18eced9 100644
--- a/setpath.py
+++ b/setpath.py
@@ -16,6 +16,8 @@
If .path file isn't found in the directory of the setpath.py module, then try
to import ZODB. If that succeeds, we assume the path is already set up
correctly. If that import fails, an IOError is raised.
+
+$Id$
"""
# TODO: Why does this want to find ZODB ???
diff --git a/talgettext.py b/talgettext.py
index 589f764..036bc19 100644
--- a/talgettext.py
+++ b/talgettext.py
@@ -26,6 +26,8 @@ Options:
-u / --update <file>
Update the existing translation <file> with any new translation strings
found.
+
+$Id$
"""
import sys
import time
diff --git a/tests/markbench.py b/tests/markbench.py
index 37bfbd9..f08f9e2 100644
--- a/tests/markbench.py
+++ b/tests/markbench.py
@@ -12,7 +12,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-'''Run benchmarks of TAL vs. DTML'''
+"""Run benchmarks of TAL vs. DTML
+
+$Id$
+"""
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
diff --git a/tests/test_sourcepos.py b/tests/test_sourcepos.py
index e5b4175..6c4efc5 100644
--- a/tests/test_sourcepos.py
+++ b/tests/test_sourcepos.py
@@ -12,8 +12,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Tests for TALInterpreter."""
+"""Tests for TALInterpreter.
+$Id$
+"""
import unittest
from StringIO import StringIO
diff --git a/tests/test_talgettext.py b/tests/test_talgettext.py
index 9d448b7..56d6858 100644
--- a/tests/test_talgettext.py
+++ b/tests/test_talgettext.py
@@ -12,8 +12,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Tests for the talgettext utility."""
+"""Tests for the talgettext utility.
+$Id$
+"""
import sys
import unittest
diff --git a/tests/utils.py b/tests/utils.py
index 33d7330..03eba52 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -11,8 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Helper functions for the test suite."""
+"""Helper functions for the test suite.
+$Id$
+"""
import os
import sys