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
b7d0df4a
Commit
b7d0df4a
authored
Jul 29, 1995
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow mac user to set "command line flags" by option-starting python.
parent
292b0f96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
Python/pythonmain.c
Python/pythonmain.c
+4
-0
No files found.
Python/pythonmain.c
View file @
b7d0df4a
...
...
@@ -65,6 +65,10 @@ realmain(argc, argv)
if
((
p
=
getenv
(
"PYTHONUNBUFFERED"
))
&&
*
p
!=
'\0'
)
unbuffered
=
1
;
#ifdef macintosh
PyMac_InteractiveOptions
(
&
inspect
,
&
verbose
,
&
suppress_print
,
&
unbuffered
,
&
debugging
);
#endif
while
((
c
=
getopt
(
argc
,
argv
,
"c:disuv"
))
!=
EOF
)
{
if
(
c
==
'c'
)
{
/* -c is the last option; following arguments
...
...
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