diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-06-21 14:05:49 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-06-21 14:05:49 +0200 |
| commit | b81133a92aa673d0d9315e9837012e59a988333a (patch) | |
| tree | 927146f8511c5a777103a2ff2b4b56ab11c6291f /python/sourcelist.cc | |
| parent | 2d962f13c554681ded71e665a429eb359742531f (diff) | |
| download | python-apt-b81133a92aa673d0d9315e9837012e59a988333a.tar.gz | |
python: Add DeprecationWarning to functions which were replaced by classes.
Diffstat (limited to 'python/sourcelist.cc')
| -rw-r--r-- | python/sourcelist.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/sourcelist.cc b/python/sourcelist.cc index e53fccd3..2cf5eea9 100644 --- a/python/sourcelist.cc +++ b/python/sourcelist.cc @@ -163,6 +163,9 @@ PyTypeObject PkgSourceListType = #ifdef COMPAT_0_7 PyObject *GetPkgSourceList(PyObject *Self,PyObject *Args) { + PyErr_WarnEx(PyExc_DeprecationWarning, "apt_pkg.GetPkgSourceList() is " + "deprecated. Please see apt_pkg.SourceList() for the " + "replacement.", 1); return PkgSourceListNew(&PkgSourceListType,Args,0); } #endif |
