# HG changeset patch # User Yuya Nishihara # Date 1398742550 -32400 # Node ID 07f9825865de16de60b18a4b2dbf562bcc743307 # Parent 541b2b08f323e69f67ce467159ce15ebfe8d1678 win32: add missing definition of _ERROR_NO_MORE_FILES caught by pyflakes diff -r 541b2b08f323 -r 07f9825865de mercurial/win32.py --- a/mercurial/win32.py Tue Apr 29 12:35:02 2014 +0900 +++ b/mercurial/win32.py Tue Apr 29 12:35:50 2014 +0900 @@ -24,6 +24,7 @@ # GetLastError _ERROR_SUCCESS = 0 +_ERROR_NO_MORE_FILES = 18 _ERROR_SHARING_VIOLATION = 32 _ERROR_INVALID_PARAMETER = 87 _ERROR_INSUFFICIENT_BUFFER = 122