davemds pushed a commit to branch master.

http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=12217e9c2a9ef40d7cf81b8bed88607bfb4f50a8

commit 12217e9c2a9ef40d7cf81b8bed88607bfb4f50a8
Author: Dave Andreoli <[email protected]>
Date:   Fri Aug 5 14:23:42 2016 +0200

    Add docs (and repr) for ECORE_EXE_TERM_WITH_PARENT
---
 efl/ecore/efl.ecore_exe.pxi | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/efl/ecore/efl.ecore_exe.pxi b/efl/ecore/efl.ecore_exe.pxi
index 4f9171f..74c0ba8 100644
--- a/efl/ecore/efl.ecore_exe.pxi
+++ b/efl/ecore/efl.ecore_exe.pxi
@@ -43,6 +43,8 @@ cdef exe_flags2str(int value):
         flags.append("USE_SH")
     if value & ECORE_EXE_NOT_LEADER:
         flags.append("NOT_LEADER")
+    if value & ECORE_EXE_TERM_WITH_PARENT:
+        flags.append("ECORE_EXE_TERM_WITH_PARENT")
     return ", ".join(flags)
 
 
@@ -298,6 +300,9 @@ cdef class Exe(object):
             Do not use setsid() to have the executed process be its own
             session leader
 
+        ECORE_EXE_TERM_WITH_PARENT
+            Makes child receive SIGTERM when parent dies
+
     :type flags: int
     :param data: extra data to be associated and available with ``data_get()``
 

-- 


Reply via email to