From a004fce70b50e4216434fd836e8cfd701b7175a5 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 21 Feb 2010 09:22:56 +0000 Subject: Show a deprecation warning when digestParseFile() is called. svn path=/main/trunk/; revision=15414 --- pym/portage/__init__.py | 3 +++ 1 file changed, 3 insertions(+) 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) -- cgit v1.2.3-1-g7c22