Issue #5204: Define _PyVerify_fd on VC6 to make

test_fdopen (test_os.py) pass.
This commit is contained in:
Hirokazu Yamamoto 2009-02-11 04:13:06 +00:00
parent e4ae63c402
commit bcd3ea86a3
1 changed files with 3 additions and 0 deletions

View File

@ -75,6 +75,9 @@ int _PyFile_SanitizeMode(char *mode);
* Visual Studio 2005
*/
int _PyVerify_fd(int fd);
#elif defined _MSC_VER && _MSC_VER >= 1200
/* fdopen doesn't set errno EBADF and crashes for large fd on debug build */
#define _PyVerify_fd(fd) (_get_osfhandle(fd) >= 0)
#else
#define _PyVerify_fd(A) (1) /* dummy */
#endif