kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=aeeee73fdad5e1c786cfd26ddb39cc47c8e46930
commit aeeee73fdad5e1c786cfd26ddb39cc47c8e46930 Author: Kai Huuhko <[email protected]> Date: Tue Aug 9 22:23:31 2016 +0300 Ecore: Include traceback with subprocess warning --- efl/ecore/efl.ecore.pyx | 1 + 1 file changed, 1 insertion(+) diff --git a/efl/ecore/efl.ecore.pyx b/efl/ecore/efl.ecore.pyx index e2245bb..79e920d 100644 --- a/efl/ecore/efl.ecore.pyx +++ b/efl/ecore/efl.ecore.pyx @@ -363,6 +363,7 @@ def subprocess_warning(*a, **ka): Instead of using subprocess.Popen(), please consider using Ecore's Exe() class. """) + traceback.print_stack() return _orig_subprocess(*a, **ka) if subprocess.Popen is not subprocess_warning: --
