summaryrefslogtreecommitdiffstats
path: root/pym/cache
diff options
context:
space:
mode:
Diffstat (limited to 'pym/cache')
-rw-r--r--pym/cache/__init__.py2
-rw-r--r--pym/cache/anydbm.py2
-rw-r--r--pym/cache/cache_errors.py2
-rw-r--r--pym/cache/flat_hash.py2
-rw-r--r--pym/cache/fs_template.py2
-rw-r--r--pym/cache/mappings.py2
-rw-r--r--pym/cache/metadata.py2
-rw-r--r--pym/cache/sql_template.py2
-rw-r--r--pym/cache/template.py2
-rw-r--r--pym/cache/util.py2
10 files changed, 10 insertions, 10 deletions
diff --git a/pym/cache/__init__.py b/pym/cache/__init__.py
index 189885cb0..cb1b59d69 100644
--- a/pym/cache/__init__.py
+++ b/pym/cache/__init__.py
@@ -1,5 +1,5 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: __init__.py 1911 2005-08-25 03:44:21Z ferringb $
+# $Id$
diff --git a/pym/cache/anydbm.py b/pym/cache/anydbm.py
index 09a1cf8b1..e250980b9 100644
--- a/pym/cache/anydbm.py
+++ b/pym/cache/anydbm.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: anydbm.py 1911 2005-08-25 03:44:21Z ferringb $
+# $Id$
anydbm_module = __import__("anydbm")
try:
diff --git a/pym/cache/cache_errors.py b/pym/cache/cache_errors.py
index 2f5b831bf..f63e5994b 100644
--- a/pym/cache/cache_errors.py
+++ b/pym/cache/cache_errors.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: cache_errors.py 1911 2005-08-25 03:44:21Z ferringb $
+# $Id$
class CacheError(Exception): pass
diff --git a/pym/cache/flat_hash.py b/pym/cache/flat_hash.py
index 3a49a05de..59b00e8d4 100644
--- a/pym/cache/flat_hash.py
+++ b/pym/cache/flat_hash.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: flat_list.py 1911 2005-08-25 03:44:21Z ferringb $
+# $Id$
import fs_template
import cache_errors
diff --git a/pym/cache/fs_template.py b/pym/cache/fs_template.py
index 49d5ca073..c63856da1 100644
--- a/pym/cache/fs_template.py
+++ b/pym/cache/fs_template.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: fs_template.py 1911 2005-08-25 03:44:21Z ferringb $
+# $Id$
import os
import template, cache_errors
diff --git a/pym/cache/mappings.py b/pym/cache/mappings.py
index 2251c4449..9aa5a21e2 100644
--- a/pym/cache/mappings.py
+++ b/pym/cache/mappings.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: mappings.py 2015 2005-09-20 23:14:26Z ferringb $
+# $Id$
import UserDict
diff --git a/pym/cache/metadata.py b/pym/cache/metadata.py
index 1fb19b398..329af224c 100644
--- a/pym/cache/metadata.py
+++ b/pym/cache/metadata.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: metadata.py 1964 2005-09-03 00:16:16Z ferringb $
+# $Id$
import os, stat, types
import flat_hash
diff --git a/pym/cache/sql_template.py b/pym/cache/sql_template.py
index c69ed772f..92e9e8713 100644
--- a/pym/cache/sql_template.py
+++ b/pym/cache/sql_template.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: sql_template.py 1911 2005-08-25 03:44:21Z ferringb $
+# $Id$
import template, cache_errors
from template import reconstruct_eclasses
diff --git a/pym/cache/template.py b/pym/cache/template.py
index 097ebed8d..419ec08a4 100644
--- a/pym/cache/template.py
+++ b/pym/cache/template.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: template.py 1911 2005-08-25 03:44:21Z ferringb $
+# $Id$
import cache_errors
from mappings import ProtectedDict
diff --git a/pym/cache/util.py b/pym/cache/util.py
index 204b549b6..0c8e585fd 100644
--- a/pym/cache/util.py
+++ b/pym/cache/util.py
@@ -1,7 +1,7 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id: util.py 1911 2005-08-25 03:44:21Z ferringb $
+# $Id$
import cache_errors