You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
686 B
27 lines
686 B
/* Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 */
|
|
/* For details: https://github.com/nedbat/coveragepy/blob/master/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 */
|