| Index: tools/telemetry/third_party/coverage/coverage/ctracer/filedisp.h
|
| diff --git a/tools/telemetry/third_party/coverage/coverage/ctracer/filedisp.h b/tools/telemetry/third_party/coverage/coverage/ctracer/filedisp.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ada68eafecb81b91a95fdc5a503250d47969a487
|
| --- /dev/null
|
| +++ b/tools/telemetry/third_party/coverage/coverage/ctracer/filedisp.h
|
| @@ -0,0 +1,26 @@
|
| +/* Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 */
|
| +/* For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt */
|
| +
|
| +#ifndef _COVERAGE_FILEDISP_H
|
| +#define _COVERAGE_FILEDISP_H
|
| +
|
| +#include "util.h"
|
| +#include "structmember.h"
|
| +
|
| +typedef struct CFileDisposition {
|
| + PyObject_HEAD
|
| +
|
| + PyObject * original_filename;
|
| + PyObject * canonical_filename;
|
| + PyObject * source_filename;
|
| + PyObject * trace;
|
| + PyObject * reason;
|
| + PyObject * file_tracer;
|
| + PyObject * has_dynamic_filename;
|
| +} CFileDisposition;
|
| +
|
| +void CFileDisposition_dealloc(CFileDisposition *self);
|
| +
|
| +extern PyTypeObject CFileDispositionType;
|
| +
|
| +#endif /* _COVERAGE_FILEDISP_H */
|
|
|