Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1447)

Side by Side Diff: Modules/main.c

Issue 11918: Drop OS/2 and VMS support in Python 3.3
Patch Set: Created 2 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Doc/whatsnew/3.3.rst ('k') | Modules/posixmodule.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Python interpreter main program */ 1 /* Python interpreter main program */
2 2
3 #include "Python.h" 3 #include "Python.h"
4 #include "osdefs.h" 4 #include "osdefs.h"
5 5
6 #include <locale.h> 6 #include <locale.h>
7 7
8 #ifdef __VMS 8 #ifdef __VMS
9 #error "VMS is now unsupported, and code will be removed in Python 3.4"
9 #include <unixlib.h> 10 #include <unixlib.h>
10 #endif 11 #endif
11 12
12 #if defined(MS_WINDOWS) || defined(__CYGWIN__) 13 #if defined(MS_WINDOWS) || defined(__CYGWIN__)
13 #include <windows.h> 14 #include <windows.h>
14 #ifdef HAVE_FCNTL_H 15 #ifdef HAVE_FCNTL_H
15 #include <fcntl.h> 16 #include <fcntl.h>
16 #define PATH_MAX MAXPATHLEN 17 #define PATH_MAX MAXPATHLEN
17 #endif 18 #endif
18 #endif 19 #endif
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 void 737 void
737 Py_GetArgcArgv(int *argc, wchar_t ***argv) 738 Py_GetArgcArgv(int *argc, wchar_t ***argv)
738 { 739 {
739 *argc = orig_argc; 740 *argc = orig_argc;
740 *argv = orig_argv; 741 *argv = orig_argv;
741 } 742 }
742 743
743 #ifdef __cplusplus 744 #ifdef __cplusplus
744 } 745 }
745 #endif 746 #endif
OLDNEW
« no previous file with comments | « Doc/whatsnew/3.3.rst ('k') | Modules/posixmodule.c » ('j') | no next file with comments »

RSS Feeds Recent Issues | This issue
This is Rietveld cbc36f91f3f7