| LEFT | RIGHT |
| 1 | 1 |
| 2 /* POSIX module implementation */ | 2 /* POSIX module implementation */ |
| 3 | 3 |
| 4 /* This file is also used for Windows NT/MS-Win and OS/2. In that case the | 4 /* This file is also used for Windows NT/MS-Win and OS/2. In that case the |
| 5 module actually calls itself 'nt' or 'os2', not 'posix', and a few | 5 module actually calls itself 'nt' or 'os2', not 'posix', and a few |
| 6 functions are either unimplemented or implemented differently. The source | 6 functions are either unimplemented or implemented differently. The source |
| 7 assumes that for Windows NT, the macro 'MS_WINDOWS' is defined independent | 7 assumes that for Windows NT, the macro 'MS_WINDOWS' is defined independent |
| 8 of the compiler used. Different compilers define their own feature | 8 of the compiler used. Different compilers define their own feature |
| 9 test macro, e.g. '__BORLANDC__' or '_MSC_VER'. For OS/2, the compiler | 9 test macro, e.g. '__BORLANDC__' or '_MSC_VER'. For OS/2, the compiler |
| 10 independent macro PYOS_OS2 should be defined. On OS/2 the default | 10 independent macro PYOS_OS2 should be defined. On OS/2 the default |
| (...skipping 11674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11685 if (!billion) | 11685 if (!billion) |
| 11686 return NULL; | 11686 return NULL; |
| 11687 | 11687 |
| 11688 return m; | 11688 return m; |
| 11689 | 11689 |
| 11690 } | 11690 } |
| 11691 | 11691 |
| 11692 #ifdef __cplusplus | 11692 #ifdef __cplusplus |
| 11693 } | 11693 } |
| 11694 #endif | 11694 #endif |
| LEFT | RIGHT |