From accf63cac274bf4b097de5e508f5949bae32011e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Fri, 29 Jul 2005 00:28:03 +0000 Subject: [PATCH] =?UTF-8?q?=5F=5Fstr=5F=5F=20leri=20b=C3=B6yle=20istemiyor?= =?UTF-8?q?mu=C5=9Fuz.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pisi/util.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pisi/util.py b/pisi/util.py index 9e0ab170..7006aeda 100644 --- a/pisi/util.py +++ b/pisi/util.py @@ -24,17 +24,6 @@ class FileError(Exception): class UtilError(Exception): pass -################################# -# # Helpers for O-O programming # -################################# - -def print_object_members(obj): - "prints the __dict__ of an object" - ui.debug("--- %s ---\n" %obj.__class__) - d = obj.__dict__ - for member in d.keys(): - ui.debug("\t%s: %s\n" % (member, d[member])) - ######################### # string/list functions #