diff --git a/contrib/check-code.py b/contrib/check-code.py --- a/contrib/check-code.py +++ b/contrib/check-code.py @@ -19,7 +19,8 @@ def repquote(m): def reppython(m): comment = m.group('comment') if comment: - return "#" * len(comment) + l = len(comment.rstrip()) + return "#" * l + comment[l:] return repquote(m) def repcomment(m): diff --git a/mercurial/pure/osutil.py b/mercurial/pure/osutil.py --- a/mercurial/pure/osutil.py +++ b/mercurial/pure/osutil.py @@ -68,7 +68,7 @@ else: _INVALID_HANDLE_VALUE = _HANDLE(-1).value - # CreateFile + # CreateFile _FILE_SHARE_READ = 0x00000001 _FILE_SHARE_WRITE = 0x00000002 _FILE_SHARE_DELETE = 0x00000004 diff --git a/mercurial/win32.py b/mercurial/win32.py --- a/mercurial/win32.py +++ b/mercurial/win32.py @@ -52,7 +52,7 @@ class _BY_HANDLE_FILE_INFORMATION(ctypes ('nFileIndexHigh', _DWORD), ('nFileIndexLow', _DWORD)] -# CreateFile +# CreateFile _FILE_SHARE_READ = 0x00000001 _FILE_SHARE_WRITE = 0x00000002 _FILE_SHARE_DELETE = 0x00000004