Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix "Python" casing in a few places (GH-9001) | Andrés Delfino | 2018-09-14 | 1 | -2/+2 |
| | |||||
* | Improve highlighting of some code blocks. (GH-6401) | Serhiy Storchaka | 2018-04-08 | 1 | -2/+6 |
| | |||||
* | Add version{changed,added} markers and make minor style changes (GH-4273) | Berker Peksag | 2017-11-04 | 1 | -0/+4 |
| | |||||
* | bpo-31574: importlib dtrace (#3749) | Christian Heimes | 2017-09-29 | 1 | -0/+11 |
| | | | | | Importlib was instrumented with two dtrace probes to profile import timing. Signed-off-by: Christian Heimes <christian@python.org> | ||||
* | Issue #21590: Silence Sphinx warnings in instrumentation.rst | Berker Peksag | 2016-11-06 | 1 | -26/+23 |
| | | | | | | WARNING: Could not lex literal_block as "c". Highlighting skipped. Patch by SilentGhost. | ||||
* | always use double quotes for SystemTap string literals (closes #28472) | Benjamin Peterson | 2016-10-18 | 1 | -5/+5 |
| | | | | Patch by Roman Podoliaka. | ||||
* | reST is not markdown | Benjamin Peterson | 2016-09-10 | 1 | -17/+17 |
| | |||||
* | DTrace support: function calls, GC activity, line execution | Łukasz Langa | 2016-09-09 | 1 | -0/+411 |
Tested on macOS 10.11 dtrace, Ubuntu 16.04 SystemTap, and libbcc. Largely based by an initial patch by Jesús Cea Avión, with some influence from Dave Malcolm's SystemTap patch and Nikhil Benesch's unification patch. Things deliberately left out for simplicity: - ustack helpers, I have no way of testing them at this point since they are Solaris-specific - PyFrameObject * in function__entry/function__return, this is SystemTap-specific - SPARC support - dynamic tracing - sys module dtrace facility introspection All of those might be added later. |