[PATCH] killdaemons: drop superfluous L suffix from constant

Augie Fackler raf at durin42.com
Wed Mar 12 21:58:59 CDT 2014


# HG changeset patch
# User Augie Fackler <raf at durin42.com>
# Date 1394488362 14400
#      Mon Mar 10 17:52:42 2014 -0400
# Node ID 7fd338128aff97cab74f336d441fc80ad6381a76
# 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 --git a/tests/killdaemons.py b/tests/killdaemons.py
--- a/tests/killdaemons.py
+++ b/tests/killdaemons.py
@@ -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)
-


More information about the Mercurial-devel mailing list