User Sylvain Defresne - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T09:50:58Zhttp://stackoverflow.com/feeds/user/5353http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/125664/how-do-i-write-a-program-that-tells-when-my-other-program-ends/125688#1256884Answer by Sylvain Defresne for How do I write a program that tells when my other program ends?Sylvain Defresne2008-09-24T06:23:48Z2008-09-24T06:23:48Z<p>If you want to write a generic program that determine from source code if another program will halt or not, you're out of luck as it is impossible. This is known as the <a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">Halting Problem</a>.</p>
<p>On the other hand, if you just want your program to launch another program, and wait for its exit, take a look at the <code>wait</code> (if you only execute a single child) or the <code>waitpid</code> (if you have many childs and want to wait for end of execution of a specific one). However, those two function only work if you launched the other program.</p>
<p>If you didn't launch the process, then you can try to poll to see if the program is still alive. This can be done with the <code>kill</code> function, sending the <code>0</code> signal. That won't kill the program, but will return an error code if the process is no longer running. As most operating system do not immediately reuse pid, this should be relatively safe, even if you poll slowly (one time per second for example). </p>
<p>All of this only work on POSIX system.</p>
http://stackoverflow.com/questions/100732/why-is-if-not-someobj-better-than-if-someobj-none-in-python/100762#10076225Answer by Sylvain Defresne for Why is if not someobj: better than if someobj == None: in Python?Sylvain Defresne2008-09-19T09:38:10Z2008-09-19T14:45:35Z<p>In the first test, Python try to convert the object to a <code>bool</code> value if it is not already one. Roughly, <strong>we are asking the object : are you meaning full or not ?</strong> This is done using the following algorithm :</p>
<ol>
<li><p>If the object has a <code>__nonzero__</code> special method (as do numeric built-ins, <code>int</code> and <code>float</code>), it calls this method. It must either return a <code>bool</code> value which is then directly used, or an <code>int</code> value that is considered <code>False</code> is equal to zero.</p></li>
<li><p>Otherwise, if the object has a <code>__len__</code> special method (as do container built-ins, <code>list</code>, <code>dict</code>, <code>set</code>, <code>tuple</code>, ...), it calls this method, considering a container <code>False</code> iff it is empty (length is zero).</p></li>
<li><p>Otherwise, the object is considered <code>True</code> unless it is <code>None</code> in which case, it is considered <code>False</code>.</p></li>
</ol>
<p>In the second test, the object is compared for equality to <code>None</code>. Here, <strong>we are asking the object : are you equal to this other value ?</strong> This is done using the following algorithm :</p>
<ol>
<li><p>If the object has a <code>__eq__</code> method, it is called, and the return value is then converted to a <code>bool</code>value and used to determine the outcome of the <code>if</code>.</p></li>
<li><p>Otherwise, if the object has a <code>__cmp__</code> method, it is called. This function must return an <code>int</code> indicating the order of the two object (<code>-1</code> if <code>self < other</code>, <code>0</code> if <code>self == other</code>, <code>+1</code> if <code>self > other</code>).</p></li>
<li><p>Otherwise, the object are compared for identity (ie. they are reference to the same object, as can be tested by the <code>is</code> operator).</p></li>
</ol>
<p>There is another test possible using the <code>is</code> operator. <strong>We would be asking the object : are you this particular object ?</strong></p>
<p>Generally, I would recommend to use the first test with non-numerical values, to use the test for equality when you want to compare objects of the same nature (two strings, two numbers, ...) and to check for identity only when using sentinel values (<code>None</code> meaning not initialized for a member field for exemple, or when using the <code>getattr</code> or the <code>__getitem__</code> methods).</p>
<p>To summarize, we have :</p>
<pre><code>>>> class A(object):
... def __repr__(self):
... return 'A()'
... def __nonzero__(self):
... return False
>>> class B(object):
... def __repr__(self):
... return 'B()'
... def __len__(self):
... return 0
>>> class C(object):
... def __repr__(self):
... return 'C()'
... def __cmp__(self, other):
... return 0
>>> class D(object):
... def __repr__(self):
... return 'D()'
... def __eq__(self, other):
... return True
>>> for obj in ['', (), [], {}, 0, 0., A(), B(), C(), D(), None]:
... print '%4s: bool(obj) -> %5s, obj == None -> %5s, obj is None -> %5s' % \
... (repr(obj), bool(obj), obj == None, obj is None)
'': bool(obj) -> False, obj == None -> False, obj is None -> False
(): bool(obj) -> False, obj == None -> False, obj is None -> False
[]: bool(obj) -> False, obj == None -> False, obj is None -> False
{}: bool(obj) -> False, obj == None -> False, obj is None -> False
0: bool(obj) -> False, obj == None -> False, obj is None -> False
0.0: bool(obj) -> False, obj == None -> False, obj is None -> False
A(): bool(obj) -> False, obj == None -> False, obj is None -> False
B(): bool(obj) -> False, obj == None -> False, obj is None -> False
C(): bool(obj) -> True, obj == None -> True, obj is None -> False
D(): bool(obj) -> True, obj == None -> True, obj is None -> False
None: bool(obj) -> False, obj == None -> True, obj is None -> True
</code></pre>
http://stackoverflow.com/questions/85577/search-for-host-with-mac-address-using-python/85632#856321Answer by Sylvain Defresne for Search for host with MAC-address using PythonSylvain Defresne2008-09-17T17:30:54Z2008-09-17T17:30:54Z<p>If you want a pure Python solution, you can take a look at <a href="http://www.secdev.org/projects/scapy/" rel="nofollow">Scapy</a> to craft packets (you need to send ARP request, and inspect replies). Or if you don't mind invoking external program, you can use <code>arping</code> (on Un*x systems, I don't know of a Windows equivalent).</p>
http://stackoverflow.com/questions/82726/how-do-i-convert-dos-files-to-linux-files-in-vim/82803#828032Answer by Sylvain Defresne for How do I convert dos files to linux files in vim?Sylvain Defresne2008-09-17T12:51:31Z2008-09-17T12:51:31Z<p>I prefer to use the following command :</p>
<pre><code>:set fileformat=unix
</code></pre>
<p>You can also use <code>mac</code> or <code>dos</code> to respectively convert your file to macintosh or MS-DOS/MS-Windows file convention. And it does nothing if the file is already in the correct format.</p>
<p>For more information, see the vim help :</p>
<pre><code>:help fileformat
</code></pre>
http://stackoverflow.com/questions/80993/how-to-skip-sys-exitfunc-when-unhandled-exceptions-occur/81087#810871Answer by Sylvain Defresne for How to skip sys.exitfunc when unhandled exceptions occurSylvain Defresne2008-09-17T08:21:20Z2008-09-17T08:21:20Z<p>I don't really know why you want to do that, but you can install an excepthook that will be called by Python whenever an uncatched exception is raised, and in it clear the array of registered function in the <code>atexit</code> module.</p>
<p>Something like that :</p>
<pre><code>import sys
import atexit
def clear_atexit_excepthook(exctype, value, traceback):
atexit._exithandlers[:] = []
sys.__excepthook__(exctype, value, traceback)
def helloworld():
print "Hello world!"
sys.excepthook = clear_atexit_excepthook
atexit.register(helloworld)
raise Exception("Good bye cruel world!")
</code></pre>
<p>Beware that it may behave incorrectly if the exception is raised from an <code>atexit</code> registered function (but then the behaviour would have been strange even if this hook was not used).</p>
http://stackoverflow.com/questions/71817/using-the-docstring-from-one-method-to-automatically-overwrite-that-of-another-me/72596#725964Answer by Sylvain Defresne for Using the docstring from one method to automatically overwrite that of another method.Sylvain Defresne2008-09-16T14:02:38Z2008-09-16T14:02:38Z<p>Well, if you don't mind copying the original method in the subclass, you can use the following technique.</p>
<pre><code>import new
def copyfunc(func):
return new.function(func.func_code, func.func_globals, func.func_name,
func.func_defaults, func.func_closure)
class Metaclass(type):
def __new__(meta, name, bases, attrs):
for key in attrs.keys():
if key[0] == '_':
skey = key[1:]
for base in bases:
original = getattr(base, skey, None)
if original is not None:
copy = copyfunc(original)
copy.__doc__ = attrs[key].__doc__
attrs[skey] = copy
break
return type.__new__(meta, name, bases, attrs)
class Class(object):
__metaclass__ = Metaclass
def execute(self):
'''original doc-string'''
return self._execute()
class Subclass(Class):
def _execute(self):
'''sub-class doc-string'''
pass
</code></pre>
http://stackoverflow.com/questions/118591/how-to-express-this-bash-command-in-pure-python/118817#118817Comment by Sylvain Defresne on How to express this Bash command in pure PythonSylvain Defresne2008-09-23T08:21:50Z2008-09-23T08:21:50ZYou can use shutil.move to do the move. It default to os.rename if source and destination are on the same filesystem, or do a copy/delete.http://stackoverflow.com/questions/101268/hidden-features-of-python/101739#101739Comment by Sylvain Defresne on Hidden features of PythonSylvain Defresne2008-09-19T13:29:25Z2008-09-19T13:29:25ZYou should test f against None, otherwise object considered false can't be used (for example 0).http://stackoverflow.com/questions/100732/why-is-if-not-someobj-better-than-if-someobj-none-in-python/100764#100764Comment by Sylvain Defresne on Why is if not someobj: better than if someobj == None: in Python?Sylvain Defresne2008-09-19T10:14:16Z2008-09-19T10:14:16ZConcerning your last question, they are equivalent.