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
6b86a42c
Commit
6b86a42c
authored
Jan 28, 1999
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document -OO; "unsafe" optimization that removes docstrings.
Marc-Andre Lemburg.
parent
bf07b29c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
Doc/tut/tut.tex
Doc/tut/tut.tex
+9
-0
Modules/main.c
Modules/main.c
+2
-1
No files found.
Doc/tut/tut.tex
View file @
6b86a42c
...
...
@@ -1925,6 +1925,15 @@ When \code{-O} is used, \emph{all} bytecode is optimized; \code{.pyc}
files are ignored and
\code
{
.py
}
files are compiled to optimized
bytecode.
\item
Passing two
\code
{
-O
}
flags to the Python interpreter (
\code
{
-OO
}
)
will cause the bytecode compiler to perform optimizations that could
in some rare cases result in malfunctioning programs. Currently only
\code
{__
doc
__}
strings are removed from the bytecode, resulting in more
compact
\file
{
.pyo
}
files. Since some programs may rely on having
these available, you should only use this option if you know what
you're doing.
\item
A program doesn't run any faster when it is read from a
\file
{
.pyc
}
or
\file
{
.pyo
}
file than when it is read from a
\file
{
.py
}
...
...
Modules/main.c
View file @
6b86a42c
...
...
@@ -60,7 +60,7 @@ static int orig_argc;
/* Short usage message (with %s for argv0) */
static
char
*
usage_line
=
"usage: %s [
-d] [-i] [-O] [-S] [-u] [-v] [-x] [-X]
[-c cmd | file | -] [arg] ...
\n
"
;
"usage: %s [
option] ...
[-c cmd | file | -] [arg] ...
\n
"
;
/* Long usage message, split into parts < 512 bytes */
static
char
*
usage_top
=
"\
...
...
@@ -69,6 +69,7 @@ Options and arguments (and corresponding environment variables):\n\
-i : inspect interactively after running script, (also PYTHONINSPECT=x)
\n
\
and force prompts, even if stdin does not appear to be a terminal
\n
\
-O : optimize generated bytecode (a tad; also PYTHONOPTIMIZE=x)
\n
\
-OO : remove doc-strings in addition to the -O optimizations
\n
\
-S : don't imply 'import site' on initialization
\n
\
-t : issue warnings about inconsistent tab usage (-tt: issue errors)
\n
\
"
;
...
...
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