Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bac428d2
Commit
bac428d2
authored
Dec 14, 1994
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enlarged version buffer (nobody expects the spanish inquisition:-)
Support for new sys.path code in config.c
parent
c5b26f4a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Mac/Python/macmain.c
Mac/Python/macmain.c
+5
-1
No files found.
Mac/Python/macmain.c
View file @
bac428d2
...
...
@@ -39,6 +39,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <console.h>
#endif
char
*
fileargument
;
main
(
argc
,
argv
)
int
argc
;
char
**
argv
;
...
...
@@ -51,7 +53,7 @@ main(argc, argv)
extern
char
*
about_message
;
extern
char
*
about_item
;
extern
char
*
getversion
(),
*
getcopyright
();
static
char
buf
[
256
];
static
char
buf
[
1024
];
sprintf
(
buf
,
"Python %s
\r
\
\r
\
%s
\r
\
...
...
@@ -76,5 +78,7 @@ Motto: \"Nobody expects the Spanish Inquisition!\"",
else
console_options
.
title
=
"\pPython"
;
#endif
/* CONSOLE_IO */
if
(
argc
>
1
)
fileargument
=
argv
[
1
];
/* Mod by Jack to do chdir */
realmain
(
argc
,
argv
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment