From: Zac Medico Date: Sun, 21 Feb 2010 09:22:56 +0000 (-0000) Subject: Show a deprecation warning when digestParseFile() is called. X-Git-Tag: v2.2_rc64~85 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a004fce70b50e4216434fd836e8cfd701b7175a5;p=portage.git Show a deprecation warning when digestParseFile() is called. svn path=/main/trunk/; revision=15414 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 25057f36c..8b9ee3160 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -5469,6 +5469,9 @@ def digestParseFile(myfilename, mysettings=None): DEPRECATED: this function is now only a compability wrapper for portage.manifest.Manifest().""" + warnings.warn("portage.digestParseFile() is deprecated", + DeprecationWarning, stacklevel=2) + mysplit = myfilename.split(os.sep) if mysplit[-2] == "files" and mysplit[-1].startswith("digest-"): pkgdir = os.sep + os.sep.join(mysplit[:-2]).strip(os.sep)