# HG changeset patch # User Augie Fackler # Date 1394488362 14400 # Node ID 1147563faf620ad698954bf354607e346eaef80d # Parent 1cd5bff45db28150d7c140be493fe851e6560f27 killdaemons: drop superfluous L suffix from constant As far as I'm aware PEP 237[0] means this suffix is superfluous even on Python 2.4, and we can just drop it, which makes this code happy on Python 3. 0: http://legacy.python.org/dev/peps/pep-0237/ diff -r 1cd5bff45db2 -r 1147563faf62 tests/killdaemons.py --- a/tests/killdaemons.py Wed Mar 12 18:28:57 2014 -0400 +++ b/tests/killdaemons.py Mon Mar 10 17:52:42 2014 -0400 @@ -16,7 +16,7 @@ logfn('# Killing daemon process %d' % pid) PROCESS_TERMINATE = 1 PROCESS_QUERY_INFORMATION = 0x400 - SYNCHRONIZE = 0x00100000L + SYNCHRONIZE = 0x00100000 WAIT_OBJECT_0 = 0 WAIT_TIMEOUT = 258 handle = ctypes.windll.kernel32.OpenProcess( @@ -89,4 +89,3 @@ if __name__ == '__main__': path, = sys.argv[1:] killdaemons(path) -