This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author matrixise
Recipients matrixise, vstinner
Date 2016-07-16.10:17:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468664253.08.0.108629793403.issue25571@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a small example of lltrace when you enable it.

```
stephane@sg1 ~/s/h/cpython> ./python 
Python 3.6.0a3+ (default:0d8f139a6e19+, Jul 16 2016, 11:59:46) 
[GCC 6.1.1 20160621 (Red Hat 6.1.1-3)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print
<built-in function print>
>>> print("hello")
hello
>>> __ltrace__ = None
>>> print("hello")
0: LOAD_NAME, 0
push <built-in function print>
2: LOAD_CONST, 0
push 'hello'
4: CALL_FUNCTION, 1
ext_pop 'hello'
hello
ext_pop <built-in function print>
push None
6: PRINT_EXPR
pop None
8: LOAD_CONST, 1
push None
10: RETURN_VALUE
pop None
>>> del __ltrace__
0: DELETE_NAME, 0
2: LOAD_CONST, 0
push None
4: RETURN_VALUE
pop None
>>> print("hello")
hello
>>> print("hello")
```
History
Date User Action Args
2016-07-16 10:17:33matrixisesetrecipients: + matrixise, vstinner
2016-07-16 10:17:33matrixisesetmessageid: <1468664253.08.0.108629793403.issue25571@psf.upfronthosting.co.za>
2016-07-16 10:17:32matrixiselinkissue25571 messages
2016-07-16 10:17:32matrixisecreate