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
dc3d606b
Commit
dc3d606b
authored
Aug 25, 2000
by
Marc-André Lemburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix to [ Bug #111165 ] doc-string removal masked by PYTHONOPTIMIZE
parent
fa488ec2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Python/pythonrun.c
Python/pythonrun.c
+3
-3
No files found.
Python/pythonrun.c
View file @
dc3d606b
...
...
@@ -108,11 +108,11 @@ Py_Initialize(void)
initialized
=
1
;
if
((
p
=
getenv
(
"PYTHONDEBUG"
))
&&
*
p
!=
'\0'
)
Py_DebugFlag
=
1
;
Py_DebugFlag
=
Py_DebugFlag
?
Py_DebugFlag
:
1
;
if
((
p
=
getenv
(
"PYTHONVERBOSE"
))
&&
*
p
!=
'\0'
)
Py_VerboseFlag
=
1
;
Py_VerboseFlag
=
Py_VerboseFlag
?
Py_VerboseFlag
:
1
;
if
((
p
=
getenv
(
"PYTHONOPTIMIZE"
))
&&
*
p
!=
'\0'
)
Py_OptimizeFlag
=
1
;
Py_OptimizeFlag
=
Py_OptimizeFlag
?
Py_OptimizeFlag
:
1
;
interp
=
PyInterpreterState_New
();
if
(
interp
==
NULL
)
...
...
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