diff options
author | Michael W. Hudson <mwh@python.net> | 2002-08-15 14:59:02 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-08-15 14:59:02 (GMT) |
commit | dd32a91cc0c8ba178d7ee5e78c30b6920aff66f4 (patch) | |
tree | 1a2062b54d3445ca788fd63c2bc63984dd85f34a /Doc/tut | |
parent | add88060c1d1a98c7970e35b326e6a65a17ddf04 (diff) | |
download | cpython-dd32a91cc0c8ba178d7ee5e78c30b6920aff66f4.zip cpython-dd32a91cc0c8ba178d7ee5e78c30b6920aff66f4.tar.gz cpython-dd32a91cc0c8ba178d7ee5e78c30b6920aff66f4.tar.bz2 |
This is my patch
[ 587993 ] SET_LINENO killer
Remove SET_LINENO. Tracing is now supported by inspecting co_lnotab.
Many sundry changes to document and adapt to this change.
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index c6081c6..4bc571a 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -2340,12 +2340,11 @@ Some tips for experts: \item When the Python interpreter is invoked with the \programopt{-O} flag, -optimized code is generated and stored in \file{.pyo} files. -The optimizer currently doesn't help much; it only removes -\keyword{assert} statements and \code{SET_LINENO} instructions. -When \programopt{-O} is used, \emph{all} bytecode is optimized; -\code{.pyc} files are ignored and \code{.py} files are compiled to -optimized bytecode. +optimized code is generated and stored in \file{.pyo} files. The +optimizer currently doesn't help much; it only removes +\keyword{assert} statements. When \programopt{-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 \programopt{-O} flags to the Python interpreter |