From: Zac Medico Date: Thu, 15 Nov 2012 16:07:59 +0000 (-0800) Subject: fixdbentries: add deprecation warning X-Git-Tag: v2.2.0_alpha143~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a6a9b6dd6342a6009097944b38163ccc66908f0e;p=portage.git fixdbentries: add deprecation warning It's unused since commit c974a023882485b8eeae35bac35c1f00d1a0725b. --- diff --git a/pym/portage/update.py b/pym/portage/update.py index 61cb8b64d..3f7603076 100644 --- a/pym/portage/update.py +++ b/pym/portage/update.py @@ -6,6 +6,7 @@ import io import re import stat import sys +import warnings from portage import os from portage import _encodings @@ -142,6 +143,10 @@ def fixdbentries(update_iter, dbdir, eapi=None, parent=None): """Performs update commands which result in search and replace operations for each of the files in dbdir (excluding CONTENTS and environment.bz2). Returns True when actual modifications are necessary and False otherwise.""" + + warnings.warn("portage.update.fixdbentries() is deprecated", + DeprecationWarning, stacklevel=2) + mydata = {} for myfile in [f for f in os.listdir(dbdir) if f not in ignored_dbentries]: file_path = os.path.join(dbdir, myfile)