# HG changeset patch # User Yuya Nishihara # Date 2014-04-29 03:35:50 # Node ID 07f9825865de16de60b18a4b2dbf562bcc743307 # Parent 541b2b08f323e69f67ce467159ce15ebfe8d1678 win32: add missing definition of _ERROR_NO_MORE_FILES caught by pyflakes diff --git a/mercurial/win32.py b/mercurial/win32.py --- a/mercurial/win32.py +++ b/mercurial/win32.py @@ -24,6 +24,7 @@ import ctypes, errno, os, subprocess, ra # GetLastError _ERROR_SUCCESS = 0 +_ERROR_NO_MORE_FILES = 18 _ERROR_SHARING_VIOLATION = 32 _ERROR_INVALID_PARAMETER = 87 _ERROR_INSUFFICIENT_BUFFER = 122