diff --git a/debian/changelog b/debian/changelog
index 47c3d27948c5d0decc87317455d33cf8ab45ca76..835ae0009db7f3b21c9680bbfab20d538d7fd82a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ python-defaults (2.6.5-2) UNRELEASED; urgency=low
     (moved to python3-defaults) 
   * debian/copyright: Add a note about dh_python2, pycompile, pyclean and
     debpython module in
+  * Add myself to Uploaders
 
   [ Scott Kitterman ]
   * debian/pyversions.py: Exclude python3 versions from results - those are
diff --git a/debian/control b/debian/control
index 12f4e65754e708e190e66757d733496eabdf438f..227abf25601b9197357c09240688113e2df14364 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: python-defaults
 Section: python
 Priority: optional
 Maintainer: Matthias Klose <doko@debian.org>
-Uploaders: Scott Kitterman <scott@kitterman.com>
+Uploaders: Scott Kitterman <scott@kitterman.com>, Piotr Ożarowski <piotr@debian.org>
 Build-Depends: debhelper (>= 5)
 Build-Depends-Indep: libhtml-tree-perl, debiandoc-sgml, python-docutils (>= 0.4-3)
 Standards-Version: 3.8.4
diff --git a/debian/control.in b/debian/control.in
index 5200370dfb8e12347fca6e6f35ea7891738b8a31..089126a0a940e143763529d53104fa17eabac628 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -2,7 +2,7 @@ Source: python-defaults
 Section: python
 Priority: optional
 Maintainer: Matthias Klose <doko@debian.org>
-Uploaders: Scott Kitterman <scott@kitterman.com>
+Uploaders: Scott Kitterman <scott@kitterman.com>, Piotr Ożarowski <piotr@debian.org>
 Build-Depends: debhelper (>= 5)
 Build-Depends-Indep: libhtml-tree-perl, debiandoc-sgml, python-docutils (>= 0.4-3)
 Standards-Version: 3.8.4
diff --git a/pyclean b/pyclean
index 8a5a874b4a18877c270a4fe33a67f8bf67ce23ba..aa51c4f7eccac4f1e669aa4134863782ad10a09f 100755
--- a/pyclean
+++ b/pyclean
@@ -26,11 +26,9 @@ import logging
 import optparse
 import sys
 from glob import glob1
-from os import environ, remove, rmdir, walk
-from os.path import dirname, exists, isdir, isfile, join
+from os import environ, remove, walk
+from os.path import exists, isdir, isfile, join
 from subprocess import Popen, PIPE
-sys.path.insert(1, '/usr/share/python/')
-from debpython.version import SUPPORTED
 
 
 # initialize script
@@ -42,7 +40,6 @@ log = logging.getLogger('pyclean')
 Examples:
     pyclean -p python-mako # all .py[co] files from the package
     pyclean /usr/lib/python2.6/dist-packages # python2.6
-    pyclean -V 3.3 /usr/lib/python3/dist-packages # python 3.3 only
 """
 
 
diff --git a/pycompile b/pycompile
index d4c87cb694faef22c33a583fa1d5e92977c91758..1078d9e3754dc8fac9aee56e0d93d6b586f607d1 100755
--- a/pycompile
+++ b/pycompile
@@ -30,7 +30,7 @@ from os import environ, listdir, mkdir, walk
 from os.path import abspath, dirname, exists, isdir, isfile, join
 from subprocess import PIPE, Popen
 sys.path.insert(1, '/usr/share/python/')
-from debpython.version import SUPPORTED, DEFAULT, debsorted, vrepr, \
+from debpython.version import SUPPORTED, debsorted, vrepr, \
         get_requested_versions, parse_vrange
 from debpython.option import Option, compile_regexpr