summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/tests')
-rw-r--r--pym/portage/tests/__init__.py1
-rw-r--r--pym/portage/tests/bin/setup_env.py1
-rw-r--r--pym/portage/tests/bin/test_dobin.py1
-rw-r--r--pym/portage/tests/bin/test_dodir.py1
-rw-r--r--pym/portage/tests/dep/__init__.py1
-rw-r--r--pym/portage/tests/dep/testAtom.py1
-rw-r--r--pym/portage/tests/dep/test_dep_getcpv.py1
-rw-r--r--pym/portage/tests/dep/test_dep_getslot.py1
-rw-r--r--pym/portage/tests/dep/test_dep_getusedeps.py1
-rw-r--r--pym/portage/tests/dep/test_get_operator.py1
-rw-r--r--pym/portage/tests/dep/test_isjustname.py1
-rw-r--r--pym/portage/tests/dep/test_isvalidatom.py1
-rw-r--r--pym/portage/tests/dep/test_match_from_list.py1
-rw-r--r--pym/portage/tests/dep/test_src_uri.py1
-rw-r--r--pym/portage/tests/dep/test_use_reduce.py1
-rw-r--r--pym/portage/tests/ebuild/__init__.py1
-rw-r--r--pym/portage/tests/ebuild/test_array_fromfile_eof.py1
-rw-r--r--pym/portage/tests/ebuild/test_pty_eof.py1
-rw-r--r--pym/portage/tests/ebuild/test_spawn.py1
-rw-r--r--pym/portage/tests/env/__init__.py1
-rw-r--r--pym/portage/tests/env/config/__init__.py1
-rw-r--r--pym/portage/tests/env/config/test_PackageKeywordsFile.py1
-rw-r--r--pym/portage/tests/env/config/test_PackageMaskFile.py1
-rw-r--r--pym/portage/tests/env/config/test_PackageUseFile.py1
-rw-r--r--pym/portage/tests/env/config/test_PortageModulesFile.py1
-rw-r--r--pym/portage/tests/lint/test_compile_modules.py1
-rw-r--r--pym/portage/tests/news/__init__.py1
-rw-r--r--pym/portage/tests/news/test_NewsItem.py1
-rw-r--r--pym/portage/tests/process/__init__.py1
-rw-r--r--pym/portage/tests/process/test_poll.py1
-rw-r--r--[-rwxr-xr-x]pym/portage/tests/runTests1
-rw-r--r--pym/portage/tests/sets/files/testConfigFileSet.py1
-rw-r--r--pym/portage/tests/sets/files/testStaticFileSet.py1
-rw-r--r--pym/portage/tests/sets/shell/testShell.py1
-rw-r--r--pym/portage/tests/util/__init__.py1
-rw-r--r--pym/portage/tests/util/test_grabdict.py1
-rw-r--r--pym/portage/tests/util/test_normalizedPath.py1
-rw-r--r--pym/portage/tests/util/test_stackDictList.py1
-rw-r--r--pym/portage/tests/util/test_stackDicts.py1
-rw-r--r--pym/portage/tests/util/test_stackLists.py1
-rw-r--r--pym/portage/tests/util/test_uniqueArray.py1
-rw-r--r--pym/portage/tests/util/test_varExpand.py1
-rw-r--r--pym/portage/tests/versions/__init__.py1
-rw-r--r--pym/portage/tests/versions/test_vercmp.py1
-rw-r--r--pym/portage/tests/xpak/__init__.py1
-rw-r--r--pym/portage/tests/xpak/test_decodeint.py1
46 files changed, 0 insertions, 46 deletions
diff --git a/pym/portage/tests/__init__.py b/pym/portage/tests/__init__.py
index fec1e238e..704847198 100644
--- a/pym/portage/tests/__init__.py
+++ b/pym/portage/tests/__init__.py
@@ -1,7 +1,6 @@
# tests/__init__.py -- Portage Unit Test functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import sys
import time
diff --git a/pym/portage/tests/bin/setup_env.py b/pym/portage/tests/bin/setup_env.py
index fdc5cd21c..a73e2ddc8 100644
--- a/pym/portage/tests/bin/setup_env.py
+++ b/pym/portage/tests/bin/setup_env.py
@@ -1,7 +1,6 @@
# setup_env.py -- Make sure bin subdir has sane env for testing
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import tempfile
diff --git a/pym/portage/tests/bin/test_dobin.py b/pym/portage/tests/bin/test_dobin.py
index 7b22f14a6..b9e9bbb1a 100644
--- a/pym/portage/tests/bin/test_dobin.py
+++ b/pym/portage/tests/bin/test_dobin.py
@@ -1,7 +1,6 @@
# test_dobin.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests.bin.setup_env import BinTestCase, dobin, xexists_in_D
diff --git a/pym/portage/tests/bin/test_dodir.py b/pym/portage/tests/bin/test_dodir.py
index 04e52077f..c6a71ed86 100644
--- a/pym/portage/tests/bin/test_dodir.py
+++ b/pym/portage/tests/bin/test_dodir.py
@@ -1,7 +1,6 @@
# test_dodir.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests.bin.setup_env import BinTestCase, dodir, exists_in_D
diff --git a/pym/portage/tests/dep/__init__.py b/pym/portage/tests/dep/__init__.py
index a3226c133..9c3f52476 100644
--- a/pym/portage/tests/dep/__init__.py
+++ b/pym/portage/tests/dep/__init__.py
@@ -1,4 +1,3 @@
# tests/portage.dep/__init__.py -- Portage Unit Test functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
diff --git a/pym/portage/tests/dep/testAtom.py b/pym/portage/tests/dep/testAtom.py
index c527bb7d2..8d69e425f 100644
--- a/pym/portage/tests/dep/testAtom.py
+++ b/pym/portage/tests/dep/testAtom.py
@@ -1,7 +1,6 @@
# test_isvalidatom.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.dep import Atom
diff --git a/pym/portage/tests/dep/test_dep_getcpv.py b/pym/portage/tests/dep/test_dep_getcpv.py
index 893de0c6e..8a0a8aa2f 100644
--- a/pym/portage/tests/dep/test_dep_getcpv.py
+++ b/pym/portage/tests/dep/test_dep_getcpv.py
@@ -1,7 +1,6 @@
# test_dep_getcpv.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.dep import dep_getcpv
diff --git a/pym/portage/tests/dep/test_dep_getslot.py b/pym/portage/tests/dep/test_dep_getslot.py
index 925a03ffc..206cecc8c 100644
--- a/pym/portage/tests/dep/test_dep_getslot.py
+++ b/pym/portage/tests/dep/test_dep_getslot.py
@@ -1,7 +1,6 @@
# test_dep_getslot.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.dep import dep_getslot
diff --git a/pym/portage/tests/dep/test_dep_getusedeps.py b/pym/portage/tests/dep/test_dep_getusedeps.py
index 82649e243..05977b157 100644
--- a/pym/portage/tests/dep/test_dep_getusedeps.py
+++ b/pym/portage/tests/dep/test_dep_getusedeps.py
@@ -1,7 +1,6 @@
# test_dep_getusedeps.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.dep import dep_getusedeps
diff --git a/pym/portage/tests/dep/test_get_operator.py b/pym/portage/tests/dep/test_get_operator.py
index fec6223a5..4f9848f5d 100644
--- a/pym/portage/tests/dep/test_get_operator.py
+++ b/pym/portage/tests/dep/test_get_operator.py
@@ -1,7 +1,6 @@
# test_get_operator.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.dep import get_operator
diff --git a/pym/portage/tests/dep/test_isjustname.py b/pym/portage/tests/dep/test_isjustname.py
index e6b0e8531..c16fb5493 100644
--- a/pym/portage/tests/dep/test_isjustname.py
+++ b/pym/portage/tests/dep/test_isjustname.py
@@ -1,7 +1,6 @@
# test_isjustname.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.dep import isjustname
diff --git a/pym/portage/tests/dep/test_isvalidatom.py b/pym/portage/tests/dep/test_isvalidatom.py
index da91a8cfa..54a930385 100644
--- a/pym/portage/tests/dep/test_isvalidatom.py
+++ b/pym/portage/tests/dep/test_isvalidatom.py
@@ -1,7 +1,6 @@
# test_isvalidatom.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.dep import isvalidatom
diff --git a/pym/portage/tests/dep/test_match_from_list.py b/pym/portage/tests/dep/test_match_from_list.py
index 8d5b1a812..d6df1f29f 100644
--- a/pym/portage/tests/dep/test_match_from_list.py
+++ b/pym/portage/tests/dep/test_match_from_list.py
@@ -1,7 +1,6 @@
# test_match_from_list.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.dep import match_from_list
diff --git a/pym/portage/tests/dep/test_src_uri.py b/pym/portage/tests/dep/test_src_uri.py
index 9955ca096..45ba09bc2 100644
--- a/pym/portage/tests/dep/test_src_uri.py
+++ b/pym/portage/tests/dep/test_src_uri.py
@@ -1,6 +1,5 @@
# Copyright 2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.dep import paren_reduce
diff --git a/pym/portage/tests/dep/test_use_reduce.py b/pym/portage/tests/dep/test_use_reduce.py
index 07b9ddbb9..ac3a13c0f 100644
--- a/pym/portage/tests/dep/test_use_reduce.py
+++ b/pym/portage/tests/dep/test_use_reduce.py
@@ -1,6 +1,5 @@
# Copyright 2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.exception import InvalidDependString
diff --git a/pym/portage/tests/ebuild/__init__.py b/pym/portage/tests/ebuild/__init__.py
index d67b0cd85..e2d487ecb 100644
--- a/pym/portage/tests/ebuild/__init__.py
+++ b/pym/portage/tests/ebuild/__init__.py
@@ -1,3 +1,2 @@
# Copyright 1998-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
diff --git a/pym/portage/tests/ebuild/test_array_fromfile_eof.py b/pym/portage/tests/ebuild/test_array_fromfile_eof.py
index efb292f8a..3f2a6c7c5 100644
--- a/pym/portage/tests/ebuild/test_array_fromfile_eof.py
+++ b/pym/portage/tests/ebuild/test_array_fromfile_eof.py
@@ -1,6 +1,5 @@
# Copyright 2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import array
import tempfile
diff --git a/pym/portage/tests/ebuild/test_pty_eof.py b/pym/portage/tests/ebuild/test_pty_eof.py
index 6280eb263..a910f98b5 100644
--- a/pym/portage/tests/ebuild/test_pty_eof.py
+++ b/pym/portage/tests/ebuild/test_pty_eof.py
@@ -1,6 +1,5 @@
# Copyright 2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import portage
from portage.tests import TestCase
diff --git a/pym/portage/tests/ebuild/test_spawn.py b/pym/portage/tests/ebuild/test_spawn.py
index 8dfbddd78..f37a0c5a3 100644
--- a/pym/portage/tests/ebuild/test_spawn.py
+++ b/pym/portage/tests/ebuild/test_spawn.py
@@ -1,6 +1,5 @@
# Copyright 1998-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import codecs
import errno
diff --git a/pym/portage/tests/env/__init__.py b/pym/portage/tests/env/__init__.py
index 50e38af99..cbeabe5c6 100644
--- a/pym/portage/tests/env/__init__.py
+++ b/pym/portage/tests/env/__init__.py
@@ -1,5 +1,4 @@
# tests/portage/env/__init__.py -- Portage Unit Test functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
diff --git a/pym/portage/tests/env/config/__init__.py b/pym/portage/tests/env/config/__init__.py
index 7fc0d0e96..ef5cc43b6 100644
--- a/pym/portage/tests/env/config/__init__.py
+++ b/pym/portage/tests/env/config/__init__.py
@@ -1,5 +1,4 @@
# tests/portage/env/config/__init__.py -- Portage Unit Test functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
diff --git a/pym/portage/tests/env/config/test_PackageKeywordsFile.py b/pym/portage/tests/env/config/test_PackageKeywordsFile.py
index d01633125..f1e9e98f0 100644
--- a/pym/portage/tests/env/config/test_PackageKeywordsFile.py
+++ b/pym/portage/tests/env/config/test_PackageKeywordsFile.py
@@ -1,7 +1,6 @@
# test_PackageKeywordsFile.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage import os
from portage.tests import TestCase
diff --git a/pym/portage/tests/env/config/test_PackageMaskFile.py b/pym/portage/tests/env/config/test_PackageMaskFile.py
index 90cdf5387..0c5b30f53 100644
--- a/pym/portage/tests/env/config/test_PackageMaskFile.py
+++ b/pym/portage/tests/env/config/test_PackageMaskFile.py
@@ -1,7 +1,6 @@
# test_PackageMaskFile.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage import os
from portage.env.config import PackageMaskFile
diff --git a/pym/portage/tests/env/config/test_PackageUseFile.py b/pym/portage/tests/env/config/test_PackageUseFile.py
index 4157d6097..7a3806792 100644
--- a/pym/portage/tests/env/config/test_PackageUseFile.py
+++ b/pym/portage/tests/env/config/test_PackageUseFile.py
@@ -1,7 +1,6 @@
# test_PackageUseFile.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage import os
from portage.tests import TestCase
diff --git a/pym/portage/tests/env/config/test_PortageModulesFile.py b/pym/portage/tests/env/config/test_PortageModulesFile.py
index 8a37b73bd..2cd1a8ab1 100644
--- a/pym/portage/tests/env/config/test_PortageModulesFile.py
+++ b/pym/portage/tests/env/config/test_PortageModulesFile.py
@@ -1,6 +1,5 @@
# Copyright 2006-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage import os
from portage.tests import TestCase
diff --git a/pym/portage/tests/lint/test_compile_modules.py b/pym/portage/tests/lint/test_compile_modules.py
index da039f4dd..ec6edfa9b 100644
--- a/pym/portage/tests/lint/test_compile_modules.py
+++ b/pym/portage/tests/lint/test_compile_modules.py
@@ -1,6 +1,5 @@
# Copyright 2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.const import PORTAGE_PYM_PATH
from portage.tests import TestCase
diff --git a/pym/portage/tests/news/__init__.py b/pym/portage/tests/news/__init__.py
index aeaa49195..28a753f9c 100644
--- a/pym/portage/tests/news/__init__.py
+++ b/pym/portage/tests/news/__init__.py
@@ -1,4 +1,3 @@
# tests/portage.news/__init__.py -- Portage Unit Test functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
diff --git a/pym/portage/tests/news/test_NewsItem.py b/pym/portage/tests/news/test_NewsItem.py
index 721ab2690..a4e76f3f7 100644
--- a/pym/portage/tests/news/test_NewsItem.py
+++ b/pym/portage/tests/news/test_NewsItem.py
@@ -1,7 +1,6 @@
# test_NewsItem.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage import os
from portage.tests import TestCase
diff --git a/pym/portage/tests/process/__init__.py b/pym/portage/tests/process/__init__.py
index 21d15a4bf..d19e353cc 100644
--- a/pym/portage/tests/process/__init__.py
+++ b/pym/portage/tests/process/__init__.py
@@ -1,3 +1,2 @@
# Copyright 1998-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
diff --git a/pym/portage/tests/process/test_poll.py b/pym/portage/tests/process/test_poll.py
index 22aa6aa8b..19cc05710 100644
--- a/pym/portage/tests/process/test_poll.py
+++ b/pym/portage/tests/process/test_poll.py
@@ -1,6 +1,5 @@
# Copyright 1998-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import sys
from portage import os
diff --git a/pym/portage/tests/runTests b/pym/portage/tests/runTests
index 7cdf5762a..3afe8e20f 100755..100644
--- a/pym/portage/tests/runTests
+++ b/pym/portage/tests/runTests
@@ -2,7 +2,6 @@
# runTests.py -- Portage Unit Test Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import os, sys
import os.path as osp
diff --git a/pym/portage/tests/sets/files/testConfigFileSet.py b/pym/portage/tests/sets/files/testConfigFileSet.py
index 95ea4f44a..c11228e9c 100644
--- a/pym/portage/tests/sets/files/testConfigFileSet.py
+++ b/pym/portage/tests/sets/files/testConfigFileSet.py
@@ -1,7 +1,6 @@
# testConfigFileSet.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import tempfile
diff --git a/pym/portage/tests/sets/files/testStaticFileSet.py b/pym/portage/tests/sets/files/testStaticFileSet.py
index 138c99e5e..174190dbb 100644
--- a/pym/portage/tests/sets/files/testStaticFileSet.py
+++ b/pym/portage/tests/sets/files/testStaticFileSet.py
@@ -1,7 +1,6 @@
# testStaticFileSet.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import tempfile
diff --git a/pym/portage/tests/sets/shell/testShell.py b/pym/portage/tests/sets/shell/testShell.py
index 43d69599a..dd8825412 100644
--- a/pym/portage/tests/sets/shell/testShell.py
+++ b/pym/portage/tests/sets/shell/testShell.py
@@ -1,7 +1,6 @@
# testCommandOututSet.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.process import find_binary
from portage.tests import TestCase, test_cps
diff --git a/pym/portage/tests/util/__init__.py b/pym/portage/tests/util/__init__.py
index 9a66903d1..69ce1898d 100644
--- a/pym/portage/tests/util/__init__.py
+++ b/pym/portage/tests/util/__init__.py
@@ -1,5 +1,4 @@
# tests/portage.util/__init__.py -- Portage Unit Test functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
diff --git a/pym/portage/tests/util/test_grabdict.py b/pym/portage/tests/util/test_grabdict.py
index 2a0642243..3bf719054 100644
--- a/pym/portage/tests/util/test_grabdict.py
+++ b/pym/portage/tests/util/test_grabdict.py
@@ -1,7 +1,6 @@
# test_grabDict.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.util import grabdict
diff --git a/pym/portage/tests/util/test_normalizedPath.py b/pym/portage/tests/util/test_normalizedPath.py
index b6851651a..f993886ac 100644
--- a/pym/portage/tests/util/test_normalizedPath.py
+++ b/pym/portage/tests/util/test_normalizedPath.py
@@ -1,7 +1,6 @@
# test_normalizePath.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
diff --git a/pym/portage/tests/util/test_stackDictList.py b/pym/portage/tests/util/test_stackDictList.py
index ada56fa0f..678001c38 100644
--- a/pym/portage/tests/util/test_stackDictList.py
+++ b/pym/portage/tests/util/test_stackDictList.py
@@ -1,7 +1,6 @@
# test_stackDictList.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
diff --git a/pym/portage/tests/util/test_stackDicts.py b/pym/portage/tests/util/test_stackDicts.py
index 0c109a9cf..0d2cadd0c 100644
--- a/pym/portage/tests/util/test_stackDicts.py
+++ b/pym/portage/tests/util/test_stackDicts.py
@@ -1,7 +1,6 @@
# test_stackDicts.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.util import stack_dicts
diff --git a/pym/portage/tests/util/test_stackLists.py b/pym/portage/tests/util/test_stackLists.py
index c26bbb06a..8d01ea5ac 100644
--- a/pym/portage/tests/util/test_stackLists.py
+++ b/pym/portage/tests/util/test_stackLists.py
@@ -1,7 +1,6 @@
# test_stackLists.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.util import stack_lists
diff --git a/pym/portage/tests/util/test_uniqueArray.py b/pym/portage/tests/util/test_uniqueArray.py
index e9485b126..34daaf23c 100644
--- a/pym/portage/tests/util/test_uniqueArray.py
+++ b/pym/portage/tests/util/test_uniqueArray.py
@@ -1,7 +1,6 @@
# test_uniqueArray.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage import os
from portage.tests import TestCase
diff --git a/pym/portage/tests/util/test_varExpand.py b/pym/portage/tests/util/test_varExpand.py
index e4f85ef43..1c2500dbd 100644
--- a/pym/portage/tests/util/test_varExpand.py
+++ b/pym/portage/tests/util/test_varExpand.py
@@ -1,7 +1,6 @@
# test_varExpand.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.util import varexpand
diff --git a/pym/portage/tests/versions/__init__.py b/pym/portage/tests/versions/__init__.py
index 5e5b216fb..2b14180bc 100644
--- a/pym/portage/tests/versions/__init__.py
+++ b/pym/portage/tests/versions/__init__.py
@@ -1,4 +1,3 @@
# tests/portage.versions/__init__.py -- Portage Unit Test functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
diff --git a/pym/portage/tests/versions/test_vercmp.py b/pym/portage/tests/versions/test_vercmp.py
index eb2ba3eb0..23e7dd575 100644
--- a/pym/portage/tests/versions/test_vercmp.py
+++ b/pym/portage/tests/versions/test_vercmp.py
@@ -1,7 +1,6 @@
# test_vercmp.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
from portage.tests import TestCase
from portage.versions import vercmp
diff --git a/pym/portage/tests/xpak/__init__.py b/pym/portage/tests/xpak/__init__.py
index a3226c133..9c3f52476 100644
--- a/pym/portage/tests/xpak/__init__.py
+++ b/pym/portage/tests/xpak/__init__.py
@@ -1,4 +1,3 @@
# tests/portage.dep/__init__.py -- Portage Unit Test functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
diff --git a/pym/portage/tests/xpak/test_decodeint.py b/pym/portage/tests/xpak/test_decodeint.py
index b949b031d..2da573598 100644
--- a/pym/portage/tests/xpak/test_decodeint.py
+++ b/pym/portage/tests/xpak/test_decodeint.py
@@ -1,7 +1,6 @@
# xpak/test_decodeint.py
# Copright Gentoo Foundation 2006
# Portage Unit Testing Functionality
-# $Id$
from portage.tests import TestCase
from portage.xpak import decodeint, encodeint