File: unset_trace.c

package info (click to toggle)
python-line-profiler 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 776 kB
  • sloc: python: 3,097; sh: 810; ansic: 65; makefile: 15
file content (7 lines) | stat: -rw-r--r-- 126 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
/* Hack to hide an <object>NULL from Cython. */

#include "Python.h"

void unset_trace() {
    PyEval_SetTrace(NULL, NULL);
}