id
int64
0
755k
file_name
stringlengths
3
109
file_path
stringlengths
13
185
content
stringlengths
31
9.38M
size
int64
31
9.38M
language
stringclasses
1 value
extension
stringclasses
11 values
total_lines
int64
1
340k
avg_line_length
float64
2.18
149k
max_line_length
int64
7
2.22M
alphanum_fraction
float64
0
1
repo_name
stringlengths
6
65
repo_stars
int64
100
47.3k
repo_forks
int64
0
12k
repo_open_issues
int64
0
3.4k
repo_license
stringclasses
9 values
repo_extraction_date
stringclasses
92 values
exact_duplicates_redpajama
bool
2 classes
near_duplicates_redpajama
bool
2 classes
exact_duplicates_githubcode
bool
2 classes
exact_duplicates_stackv2
bool
1 class
exact_duplicates_stackv1
bool
2 classes
near_duplicates_githubcode
bool
2 classes
near_duplicates_stackv1
bool
2 classes
near_duplicates_stackv2
bool
1 class
24,507
pyexpat.h
relativty_Relativty/Relativty_Driver/include/Python/pyexpat.h
/* Stuff to export relevant 'expat' entry points from pyexpat to other * parser modules, such as cElementTree. */ /* note: you must import expat.h before importing this module! */ #define PyExpat_CAPI_MAGIC "pyexpat.expat_CAPI 1.1" #define PyExpat_CAPSULE_NAME "pyexpat.expat_CAPI" struct PyExpat_CAPI { char* m...
2,450
C++
.h
51
41.72549
80
0.707724
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,508
compile.h
relativty_Relativty/Relativty_Driver/include/Python/compile.h
#ifndef Py_COMPILE_H #define Py_COMPILE_H #ifndef Py_LIMITED_API #include "code.h" #ifdef __cplusplus extern "C" { #endif /* Public interface */ struct _node; /* Declare the existence of this type */ PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *); /* XXX (ncoghlan): Unprefixed type name in a...
3,582
C++
.h
88
37.522727
85
0.730725
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,509
symtable.h
relativty_Relativty/Relativty_Driver/include/Python/symtable.h
#ifndef Py_LIMITED_API #ifndef Py_SYMTABLE_H #define Py_SYMTABLE_H #ifdef __cplusplus extern "C" { #endif #include "Python-ast.h" /* mod_ty */ /* XXX(ncoghlan): This is a weird mix of public names and interpreter internal * names. */ typedef enum _block_type { FunctionBlock, ClassBlock, ModuleBloc...
5,308
C++
.h
105
44.238095
87
0.630858
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,510
sliceobject.h
relativty_Relativty/Relativty_Driver/include/Python/sliceobject.h
#ifndef Py_SLICEOBJECT_H #define Py_SLICEOBJECT_H #ifdef __cplusplus extern "C" { #endif /* The unique ellipsis object "..." */ PyAPI_DATA(PyObject) _Py_EllipsisObject; /* Don't use this directly */ #define Py_Ellipsis (&_Py_EllipsisObject) /* Slice object interface */ /* A slice object containing start, stop, an...
2,517
C++
.h
54
38.166667
131
0.597879
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,511
setobject.h
relativty_Relativty/Relativty_Driver/include/Python/setobject.h
/* Set object interface */ #ifndef Py_SETOBJECT_H #define Py_SETOBJECT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API /* There are three kinds of entries in the table: 1. Unused: key == NULL and hash == 0 2. Dummy: key == dummy and hash == -1 3. Active: key != NULL and key != dummy and hash != ...
3,362
C++
.h
82
38.121951
98
0.696681
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,512
intrcheck.h
relativty_Relativty/Relativty_Driver/include/Python/intrcheck.h
#ifndef Py_INTRCHECK_H #define Py_INTRCHECK_H #ifdef __cplusplus extern "C" { #endif PyAPI_FUNC(int) PyOS_InterruptOccurred(void); PyAPI_FUNC(void) PyOS_InitInterrupts(void); #ifdef HAVE_FORK #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03070000 PyAPI_FUNC(void) PyOS_BeforeFork(void); PyAPI_FUNC(void) PyOS_A...
861
C++
.h
28
29.571429
74
0.764493
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,513
graminit.h
relativty_Relativty/Relativty_Driver/include/Python/graminit.h
/* Generated by Parser/pgen */ #define single_input 256 #define file_input 257 #define eval_input 258 #define decorator 259 #define decorators 260 #define decorated 261 #define async_funcdef 262 #define funcdef 263 #define parameters 264 #define typedargslist 265 #define tfpdef 266 #define varargslist 267 #define vfpd...
2,118
C++
.h
93
21.763441
30
0.825593
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,514
pyfpe.h
relativty_Relativty/Relativty_Driver/include/Python/pyfpe.h
#ifndef Py_PYFPE_H #define Py_PYFPE_H /* These macros used to do something when Python was built with --with-fpectl, * but support for that was dropped in 3.7. We continue to define them though, * to avoid breaking API users. */ #define PyFPE_START_PROTECT(err_string, leave_stmt) #define PyFPE_END_PROTECT(v) #end...
341
C++
.h
9
36.222222
78
0.74772
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,515
frameobject.h
relativty_Relativty/Relativty_Driver/include/Python/frameobject.h
/* Frame object interface */ #ifndef Py_LIMITED_API #ifndef Py_FRAMEOBJECT_H #define Py_FRAMEOBJECT_H #ifdef __cplusplus extern "C" { #endif typedef struct { int b_type; /* what kind of block this is */ int b_handler; /* where to jump to find handler */ int b_level; ...
3,317
C++
.h
68
44.279412
76
0.665116
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,516
funcobject.h
relativty_Relativty/Relativty_Driver/include/Python/funcobject.h
/* Function object interface */ #ifndef Py_LIMITED_API #ifndef Py_FUNCOBJECT_H #define Py_FUNCOBJECT_H #ifdef __cplusplus extern "C" { #endif /* Function objects and code objects should not be confused with each other: * * Function objects are created by the execution of the 'def' statement. * They reference a cod...
4,200
C++
.h
91
43.032967
86
0.7146
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,517
floatobject.h
relativty_Relativty/Relativty_Driver/include/Python/floatobject.h
/* Float object interface */ /* PyFloatObject represents a (double precision) floating point number. */ #ifndef Py_FLOATOBJECT_H #define Py_FLOATOBJECT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API typedef struct { PyObject_HEAD double ob_fval; } PyFloatObject; #endif PyAPI_DATA(PyTypeObj...
4,794
C++
.h
109
41.853211
78
0.727273
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,518
pystrhex.h
relativty_Relativty/Relativty_Driver/include/Python/pystrhex.h
#ifndef Py_STRHEX_H #define Py_STRHEX_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API /* Returns a str() containing the hex representation of argbuf. */ PyAPI_FUNC(PyObject*) _Py_strhex(const char* argbuf, const Py_ssize_t arglen); /* Returns a bytes() containing the ASCII hex representation of argbuf...
849
C++
.h
18
45.944444
141
0.750907
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,519
pydtrace.h
relativty_Relativty/Relativty_Driver/include/Python/pydtrace.h
/* Static DTrace probes interface */ #ifndef Py_DTRACE_H #define Py_DTRACE_H #ifdef __cplusplus extern "C" { #endif #ifdef WITH_DTRACE #include "pydtrace_probes.h" /* pydtrace_probes.h, on systems with DTrace, is auto-generated to include `PyDTrace_{PROBE}` and `PyDTrace_{PROBE}_ENABLED()` macros for every probe...
2,413
C++
.h
47
49.446809
92
0.762532
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,520
complexobject.h
relativty_Relativty/Relativty_Driver/include/Python/complexobject.h
/* Complex number structure */ #ifndef Py_COMPLEXOBJECT_H #define Py_COMPLEXOBJECT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API typedef struct { double real; double imag; } Py_complex; /* Operations on complex numbers from complexmodule.c */ PyAPI_FUNC(Py_complex) _Py_c_sum(Py_complex, Py...
1,807
C++
.h
57
29.807018
71
0.767549
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,521
object.h
relativty_Relativty/Relativty_Driver/include/Python/object.h
#ifndef Py_OBJECT_H #define Py_OBJECT_H #include "pymem.h" /* _Py_tracemalloc_config */ #ifdef __cplusplus extern "C" { #endif /* Object and type object interface */ /* Objects are structures allocated on the heap. Special rules apply to the use of objects to ensure they are properly garbage-collected. Objects ...
29,599
C++
.h
627
44.550239
84
0.71795
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,522
moduleobject.h
relativty_Relativty/Relativty_Driver/include/Python/moduleobject.h
/* Module object interface */ #ifndef Py_MODULEOBJECT_H #define Py_MODULEOBJECT_H #ifdef __cplusplus extern "C" { #endif PyAPI_DATA(PyTypeObject) PyModule_Type; #define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type) #define PyModule_CheckExact(op) (Py_TYPE(op) == &PyModule_Type) #if !defined(Py_LIMITED_...
2,362
C++
.h
76
29
77
0.722271
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,523
pytime.h
relativty_Relativty/Relativty_Driver/include/Python/pytime.h
#ifndef Py_LIMITED_API #ifndef Py_PYTIME_H #define Py_PYTIME_H #include "pyconfig.h" /* include for defines */ #include "object.h" /************************************************************************** Symbols and macros to supply platform-independent interfaces to time related functions and constants **********...
8,926
C++
.h
197
41.979695
79
0.711636
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,524
context.h
relativty_Relativty/Relativty_Driver/include/Python/context.h
#ifndef Py_CONTEXT_H #define Py_CONTEXT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API PyAPI_DATA(PyTypeObject) PyContext_Type; typedef struct _pycontextobject PyContext; PyAPI_DATA(PyTypeObject) PyContextVar_Type; typedef struct _pycontextvarobject PyContextVar; PyAPI_DATA(PyTypeObject) PyContext...
2,014
C++
.h
53
35.641509
73
0.75544
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,525
pyhash.h
relativty_Relativty/Relativty_Driver/include/Python/pyhash.h
#ifndef Py_HASH_H #define Py_HASH_H #ifdef __cplusplus extern "C" { #endif /* Helpers for hash functions */ #ifndef Py_LIMITED_API PyAPI_FUNC(Py_hash_t) _Py_HashDouble(double); PyAPI_FUNC(Py_hash_t) _Py_HashPointer(void*); PyAPI_FUNC(Py_hash_t) _Py_HashBytes(const void*, Py_ssize_t); #endif /* Prime multiplier used ...
4,140
C++
.h
126
30.293651
86
0.685607
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,526
osmodule.h
relativty_Relativty/Relativty_Driver/include/Python/osmodule.h
/* os module interface */ #ifndef Py_OSMODULE_H #define Py_OSMODULE_H #ifdef __cplusplus extern "C" { #endif #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000 PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path); #endif #ifdef __cplusplus } #endif #endif /* !Py_OSMODULE_H */
291
C++
.h
13
21.076923
62
0.729927
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,527
ucnhash.h
relativty_Relativty/Relativty_Driver/include/Python/ucnhash.h
/* Unicode name database interface */ #ifndef Py_LIMITED_API #ifndef Py_UCNHASH_H #define Py_UCNHASH_H #ifdef __cplusplus extern "C" { #endif /* revised ucnhash CAPI interface (exported through a "wrapper") */ #define PyUnicodeData_CAPSULE_NAME "unicodedata.ucnhash_CAPI" typedef struct { /* Size of this struct ...
1,056
C++
.h
28
33.214286
80
0.681373
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,528
codecs.h
relativty_Relativty/Relativty_Driver/include/Python/codecs.h
#ifndef Py_CODECREGISTRY_H #define Py_CODECREGISTRY_H #ifdef __cplusplus extern "C" { #endif /* ------------------------------------------------------------------------ Python Codec Registry and support functions Written by Marc-Andre Lemburg (mal@lemburg.com). Copyright (c) Corporation for National Research In...
6,793
C++
.h
171
35.444444
81
0.71204
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,529
typeslots.h
relativty_Relativty/Relativty_Driver/include/Python/typeslots.h
/* Do not renumber the file; these numbers are part of the stable ABI. */ /* Disabled, see #10181 */ #undef Py_bf_getbuffer #undef Py_bf_releasebuffer #define Py_mp_ass_subscript 3 #define Py_mp_length 4 #define Py_mp_subscript 5 #define Py_nb_absolute 6 #define Py_nb_add 7 #define Py_nb_and 8 #define Py_nb_bool 9 #def...
2,253
C++
.h
85
25.505882
73
0.777675
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,530
node.h
relativty_Relativty/Relativty_Driver/include/Python/node.h
/* Parse tree node interface */ #ifndef Py_NODE_H #define Py_NODE_H #ifdef __cplusplus extern "C" { #endif typedef struct _node { short n_type; char *n_str; int n_lineno; int n_col_offset; int n_nchildren; struct _no...
1,328
C++
.h
39
30.358974
72
0.564844
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,531
pyport.h
relativty_Relativty/Relativty_Driver/include/Python/pyport.h
#ifndef Py_PYPORT_H #define Py_PYPORT_H #include "pyconfig.h" /* include for defines */ #include <inttypes.h> /* Defines to build Python and its standard library: * * - Py_BUILD_CORE: Build Python core. Give access to Python internals, but * should not be used by third-party modules. * - Py_BUILD_CORE_BUILTIN...
30,221
C++
.h
737
38.466757
102
0.642198
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,532
sysmodule.h
relativty_Relativty/Relativty_Driver/include/Python/sysmodule.h
/* System module interface */ #ifndef Py_SYSMODULE_H #define Py_SYSMODULE_H #ifdef __cplusplus extern "C" { #endif PyAPI_FUNC(PyObject *) PySys_GetObject(const char *); PyAPI_FUNC(int) PySys_SetObject(const char *, PyObject *); PyAPI_FUNC(void) PySys_SetArgv(int, wchar_t **); PyAPI_FUNC(void) PySys_SetArgvEx(int, w...
1,242
C++
.h
32
36.46875
61
0.731057
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,533
grammar.h
relativty_Relativty/Relativty_Driver/include/Python/grammar.h
/* Grammar interface */ #ifndef Py_GRAMMAR_H #define Py_GRAMMAR_H #ifdef __cplusplus extern "C" { #endif #include "bitset.h" /* Sigh... */ /* A label of an arc */ typedef struct { int lb_type; const char *lb_str; } label; #define EMPTY 0 /* Label number 0 is by definition the empty label...
1,821
C++
.h
58
28.482759
77
0.572821
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,534
pystrcmp.h
relativty_Relativty/Relativty_Driver/include/Python/pystrcmp.h
#ifndef Py_STRCMP_H #define Py_STRCMP_H #ifdef __cplusplus extern "C" { #endif PyAPI_FUNC(int) PyOS_mystrnicmp(const char *, const char *, Py_ssize_t); PyAPI_FUNC(int) PyOS_mystricmp(const char *, const char *); #ifdef MS_WINDOWS #define PyOS_strnicmp strnicmp #define PyOS_stricmp stricmp #else #define PyOS_strnicmp...
436
C++
.h
18
22.944444
72
0.772397
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,535
odictobject.h
relativty_Relativty/Relativty_Driver/include/Python/odictobject.h
#ifndef Py_ODICTOBJECT_H #define Py_ODICTOBJECT_H #ifdef __cplusplus extern "C" { #endif /* OrderedDict */ /* This API is optional and mostly redundant. */ #ifndef Py_LIMITED_API typedef struct _odictobject PyODictObject; PyAPI_DATA(PyTypeObject) PyODict_Type; PyAPI_DATA(PyTypeObject) PyODictIter_Type; PyAPI_DATA(...
1,300
C++
.h
33
37.848485
77
0.778043
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,536
classobject.h
relativty_Relativty/Relativty_Driver/include/Python/classobject.h
/* Former class object interface -- now only bound methods are here */ /* Revealing some structures (not for general use) */ #ifndef Py_LIMITED_API #ifndef Py_CLASSOBJECT_H #define Py_CLASSOBJECT_H #ifdef __cplusplus extern "C" { #endif typedef struct { PyObject_HEAD PyObject *im_func; /* The callable obj...
1,710
C++
.h
44
36.204545
76
0.731678
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,537
cellobject.h
relativty_Relativty/Relativty_Driver/include/Python/cellobject.h
/* Cell object interface */ #ifndef Py_LIMITED_API #ifndef Py_CELLOBJECT_H #define Py_CELLOBJECT_H #ifdef __cplusplus extern "C" { #endif typedef struct { PyObject_HEAD PyObject *ob_ref; /* Content of the cell or NULL when empty */ } PyCellObject; PyAPI_DATA(PyTypeObject) PyCell_Type; #define PyCell_Ch...
713
C++
.h
23
29.391304
72
0.707602
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,538
pythread.h
relativty_Relativty/Relativty_Driver/include/Python/pythread.h
#ifndef Py_PYTHREAD_H #define Py_PYTHREAD_H typedef void *PyThread_type_lock; typedef void *PyThread_type_sema; #ifdef __cplusplus extern "C" { #endif /* Return status codes for Python lock acquisition. Chosen for maximum * backwards compatibility, ie failure -> 0, success -> 1. */ typedef enum PyLockStatus { ...
5,660
C++
.h
128
40.804688
151
0.717039
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,539
descrobject.h
relativty_Relativty/Relativty_Driver/include/Python/descrobject.h
/* Descriptors */ #ifndef Py_DESCROBJECT_H #define Py_DESCROBJECT_H #ifdef __cplusplus extern "C" { #endif typedef PyObject *(*getter)(PyObject *, void *); typedef int (*setter)(PyObject *, PyObject *, void *); typedef struct PyGetSetDef { const char *name; getter get; setter set; const char *doc; ...
3,019
C++
.h
88
29.477273
78
0.70079
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,540
structseq.h
relativty_Relativty/Relativty_Driver/include/Python/structseq.h
/* Named tuple object interface */ #ifndef Py_STRUCTSEQ_H #define Py_STRUCTSEQ_H #ifdef __cplusplus extern "C" { #endif typedef struct PyStructSequence_Field { const char *name; const char *doc; } PyStructSequence_Field; typedef struct PyStructSequence_Desc { const char *name; const char *doc; s...
1,377
C++
.h
37
32.918919
80
0.736446
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,541
pyerrors.h
relativty_Relativty/Relativty_Driver/include/Python/pyerrors.h
#ifndef Py_ERRORS_H #define Py_ERRORS_H #ifdef __cplusplus extern "C" { #endif /* Error handling definitions */ PyAPI_FUNC(void) PyErr_SetNone(PyObject *); PyAPI_FUNC(void) PyErr_SetObject(PyObject *, PyObject *); PyAPI_FUNC(void) PyErr_SetString( PyObject *exception, const char *string /* decoded from utf-...
12,786
C++
.h
289
42.038062
87
0.750301
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,542
picklebufobject.h
relativty_Relativty/Relativty_Driver/include/Python/picklebufobject.h
/* PickleBuffer object. This is built-in for ease of use from third-party * C extensions. */ #ifndef Py_PICKLEBUFOBJECT_H #define Py_PICKLEBUFOBJECT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API PyAPI_DATA(PyTypeObject) PyPickleBuffer_Type; #define PyPickleBuffer_Check(op) (Py_TYPE(op) == &PyPic...
847
C++
.h
24
33.833333
74
0.767157
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,543
objimpl.h
relativty_Relativty/Relativty_Driver/include/Python/objimpl.h
/* The PyObject_ memory family: high-level object memory interfaces. See pymem.h for the low-level PyMem_ family. */ #ifndef Py_OBJIMPL_H #define Py_OBJIMPL_H #include "pymem.h" #ifdef __cplusplus extern "C" { #endif /* BEWARE: Each interface exports both functions and macros. Extension modules should u...
10,537
C++
.h
224
43.303571
79
0.689749
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,544
methodobject.h
relativty_Relativty/Relativty_Driver/include/Python/methodobject.h
/* Method object interface */ #ifndef Py_METHODOBJECT_H #define Py_METHODOBJECT_H #ifdef __cplusplus extern "C" { #endif /* This is about the type 'builtin_function_or_method', not Python methods in user-defined classes. See classobject.h for the latter. */ PyAPI_DATA(PyTypeObject) PyCFunction_Type; #define...
4,406
C++
.h
108
36.175926
82
0.692632
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,545
marshal.h
relativty_Relativty/Relativty_Driver/include/Python/marshal.h
/* Interface for marshal.c */ #ifndef Py_MARSHAL_H #define Py_MARSHAL_H #ifdef __cplusplus extern "C" { #endif #define Py_MARSHAL_VERSION 4 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int); PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int); PyAPI_FUNC(PyObject *) PyMarshal_WriteObje...
803
C++
.h
22
32.772727
70
0.726452
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,546
pyarena.h
relativty_Relativty/Relativty_Driver/include/Python/pyarena.h
/* An arena-like memory interface for the compiler. */ #ifndef Py_LIMITED_API #ifndef Py_PYARENA_H #define Py_PYARENA_H #ifdef __cplusplus extern "C" { #endif typedef struct _arena PyArena; /* PyArena_New() and PyArena_Free() create a new arena and free it, respectively. Once an arena has been created, i...
2,744
C++
.h
55
45.890909
77
0.723507
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,547
osdefs.h
relativty_Relativty/Relativty_Driver/include/Python/osdefs.h
#ifndef Py_OSDEFS_H #define Py_OSDEFS_H #ifdef __cplusplus extern "C" { #endif /* Operating system dependencies */ #ifdef MS_WINDOWS #define SEP L'\\' #define ALTSEP L'/' #define MAXPATHLEN 256 #define DELIM L';' #endif #ifdef __VXWORKS__ #define DELIM L';' #endif /* Filename separator */ #ifndef SEP #define SEP L...
737
C++
.h
42
16.333333
40
0.747813
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,549
py_curses.h
relativty_Relativty/Relativty_Driver/include/Python/py_curses.h
#ifndef Py_CURSES_H #define Py_CURSES_H #ifdef __APPLE__ /* ** On Mac OS X 10.2 [n]curses.h and stdlib.h use different guards ** against multiple definition of wchar_t. */ #ifdef _BSD_WCHAR_T_DEFINED_ #define _WCHAR_T #endif #endif /* __APPLE__ */ /* On FreeBSD, [n]curses.h and stdlib.h/wchar.h use different guards ...
2,477
C++
.h
76
30.907895
91
0.72907
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,550
tracemalloc.h
relativty_Relativty/Relativty_Driver/include/Python/tracemalloc.h
#ifndef Py_TRACEMALLOC_H #define Py_TRACEMALLOC_H #ifndef Py_LIMITED_API /* Track an allocated memory block in the tracemalloc module. Return 0 on success, return -1 on error (failed to allocate memory to store the trace). Return -2 if tracemalloc is disabled. If memory block is already tracked, update t...
1,114
C++
.h
28
36.357143
78
0.752788
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,551
import.h
relativty_Relativty/Relativty_Driver/include/Python/import.h
/* Module definition and import interface */ #ifndef Py_IMPORT_H #define Py_IMPORT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API PyMODINIT_FUNC PyInit__imp(void); #endif /* !Py_LIMITED_API */ PyAPI_FUNC(long) PyImport_GetMagicNumber(void); PyAPI_FUNC(const char *) PyImport_GetMagicTag(void); PyAPI_...
4,926
C++
.h
134
32.798507
78
0.684949
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,552
interpreteridobject.h
relativty_Relativty/Relativty_Driver/include/Python/interpreteridobject.h
#ifndef Py_INTERPRETERIDOBJECT_H #define Py_INTERPRETERIDOBJECT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API # define Py_CPYTHON_INTERPRETERIDOBJECT_H # include "cpython/interpreteridobject.h" # undef Py_CPYTHON_INTERPRETERIDOBJECT_H #endif #ifdef __cplusplus } #endif #endif /* !Py_INTERPRETER...
334
C++
.h
14
22.642857
43
0.801262
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,553
traceback.h
relativty_Relativty/Relativty_Driver/include/Python/traceback.h
#ifndef Py_TRACEBACK_H #define Py_TRACEBACK_H #ifdef __cplusplus extern "C" { #endif struct _frame; /* Traceback interface */ PyAPI_FUNC(int) PyTraceBack_Here(struct _frame *); PyAPI_FUNC(int) PyTraceBack_Print(PyObject *, PyObject *); /* Reveal traceback type so we can typecheck traceback objects */ PyAPI_DATA(PyT...
601
C++
.h
21
27.285714
65
0.762653
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,554
bitset.h
relativty_Relativty/Relativty_Driver/include/Python/bitset.h
#ifndef Py_BITSET_H #define Py_BITSET_H #ifdef __cplusplus extern "C" { #endif /* Bitset interface */ #define BYTE char typedef BYTE *bitset; #define testbit(ss, ibit) (((ss)[BIT2BYTE(ibit)] & BIT2MASK(ibit)) != 0) #define BITSPERBYTE (8*sizeof(BYTE)) #define BIT2BYTE(ibit) ((ibit) / BITSPERBYTE) #...
468
C++
.h
17
26.176471
72
0.692135
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,555
listobject.h
relativty_Relativty/Relativty_Driver/include/Python/listobject.h
/* List object interface */ /* Another generally useful object type is a list of object pointers. This is a mutable type: the list items can be changed, and items can be added or removed. Out-of-range indices or non-list objects are ignored. *** WARNING *** PyList_SetItem does not increment the new item's reference...
2,927
C++
.h
69
40.173913
80
0.726634
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,556
pymath.h
relativty_Relativty/Relativty_Driver/include/Python/pymath.h
#ifndef Py_PYMATH_H #define Py_PYMATH_H #include "pyconfig.h" /* include for defines */ /************************************************************************** Symbols and macros to supply platform-independent interfaces to mathematical functions and constants *****************************************************...
8,312
C++
.h
208
37.1875
139
0.682752
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,557
warnings.h
relativty_Relativty/Relativty_Driver/include/Python/warnings.h
#ifndef Py_WARNINGS_H #define Py_WARNINGS_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API PyAPI_FUNC(PyObject*) _PyWarnings_Init(void); #endif PyAPI_FUNC(int) PyErr_WarnEx( PyObject *category, const char *message, /* UTF-8 encoded string */ Py_ssize_t stack_level); PyAPI_FUNC(int) P...
1,776
C++
.h
59
26.135593
74
0.674664
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,558
eval.h
relativty_Relativty/Relativty_Driver/include/Python/eval.h
/* Interface to execute compiled code */ #ifndef Py_EVAL_H #define Py_EVAL_H #ifdef __cplusplus extern "C" { #endif PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyObject *, PyObject *, PyObject *); PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyObject *co, PyObject *globals, ...
1,209
C++
.h
30
29.8
78
0.585324
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,559
pymacconfig.h
relativty_Relativty/Relativty_Driver/include/Python/pymacconfig.h
#ifndef PYMACCONFIG_H #define PYMACCONFIG_H /* * This file moves some of the autoconf magic to compile-time * when building on MacOSX. This is needed for building 4-way * universal binaries and for 64-bit universal binaries because * the values redefined below aren't configure-time constant...
2,989
C++
.h
88
31.363636
71
0.625216
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,560
weakrefobject.h
relativty_Relativty/Relativty_Driver/include/Python/weakrefobject.h
/* Weak references objects for Python. */ #ifndef Py_WEAKREFOBJECT_H #define Py_WEAKREFOBJECT_H #ifdef __cplusplus extern "C" { #endif typedef struct _PyWeakReference PyWeakReference; /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType, * and CallableProxyType. */ #ifndef Py_LIMITED_API ...
2,866
C++
.h
67
37.865672
78
0.693885
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,561
enumobject.h
relativty_Relativty/Relativty_Driver/include/Python/enumobject.h
#ifndef Py_ENUMOBJECT_H #define Py_ENUMOBJECT_H /* Enumerate Object */ #ifdef __cplusplus extern "C" { #endif PyAPI_DATA(PyTypeObject) PyEnum_Type; PyAPI_DATA(PyTypeObject) PyReversed_Type; #ifdef __cplusplus } #endif #endif /* !Py_ENUMOBJECT_H */
253
C++
.h
12
19.666667
41
0.771186
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,562
pystate.h
relativty_Relativty/Relativty_Driver/include/Python/pystate.h
/* Thread and interpreter state structures and their interfaces */ #ifndef Py_PYSTATE_H #define Py_PYSTATE_H #ifdef __cplusplus extern "C" { #endif #include "pythread.h" /* This limitation is for performance and simplicity. If needed it can be removed (with effort). */ #define MAX_CO_EXTRA_USERS 255 /* Forward dec...
4,686
C++
.h
103
43.038835
76
0.77033
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,563
opcode.h
relativty_Relativty/Relativty_Driver/include/Python/opcode.h
/* Auto-generated by Tools/scripts/generate_opcode_h.py from Lib/opcode.py */ #ifndef Py_OPCODE_H #define Py_OPCODE_H #ifdef __cplusplus extern "C" { #endif /* Instruction opcodes for compiled code */ #define POP_TOP 1 #define ROT_TWO 2 #define ROT_THREE 3 #defi...
5,164
C++
.h
141
35.255319
77
0.585925
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,564
asdl.h
relativty_Relativty/Relativty_Driver/include/Python/asdl.h
#ifndef Py_ASDL_H #define Py_ASDL_H typedef PyObject * identifier; typedef PyObject * string; typedef PyObject * bytes; typedef PyObject * object; typedef PyObject * singleton; typedef PyObject * constant; /* It would be nice if the code generated by asdl_c.py was completely independent of Python, but it is a goal...
1,229
C++
.h
38
29.421053
72
0.659341
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,565
pylifecycle.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/pylifecycle.h
#ifndef Py_CPYTHON_PYLIFECYCLE_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif /* Only used by applications that embed the interpreter and need to * override the standard encoding determination mechanism */ PyAPI_FUNC(int) Py_SetStandardStreamEncoding(const ...
2,263
C++
.h
58
35.862069
76
0.743707
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,566
tupleobject.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/tupleobject.h
#ifndef Py_CPYTHON_TUPLEOBJECT_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif typedef struct { PyObject_VAR_HEAD /* ob_item contains space for 'ob_size' elements. Items must normally not be NULL, except during construction when the tuple...
1,036
C++
.h
26
37.461538
76
0.724
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,568
abstract.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/abstract.h
#ifndef Py_CPYTHON_ABSTRACTOBJECT_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif /* === Object Protocol ================================================== */ #ifdef PY_SSIZE_T_CLEAN # define _PyObject_CallMethodId _PyObject_CallMethodId_SizeT #endif /* Con...
12,295
C++
.h
250
42.644
94
0.658818
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,569
dictobject.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/dictobject.h
#ifndef Py_CPYTHON_DICTOBJECT_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif typedef struct _dictkeysobject PyDictKeysObject; /* The ma_values pointer is NULL for a combined table * or points to an array of PyObject* for a split table */ typedef struct { ...
3,845
C++
.h
76
45.486842
97
0.704346
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,570
pymem.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/pymem.h
#ifndef Py_CPYTHON_PYMEM_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif PyAPI_FUNC(void *) PyMem_RawMalloc(size_t size); PyAPI_FUNC(void *) PyMem_RawCalloc(size_t nelem, size_t elsize); PyAPI_FUNC(void *) PyMem_RawRealloc(void *ptr, size_t new_size); PyAPI_FU...
3,511
C++
.h
79
40.291139
79
0.714664
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,571
fileobject.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/fileobject.h
#ifndef Py_CPYTHON_FILEOBJECT_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif PyAPI_FUNC(char *) Py_UniversalNewlineFgets(char *, int, FILE*, PyObject *); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000 PyAPI_DATA(const char *) Py_FileSystemDef...
951
C++
.h
24
38.166667
85
0.775843
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,572
object.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/object.h
#ifndef Py_CPYTHON_OBJECT_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif /********************* String Literals ****************************************/ /* This structure helps managing static strings. The basic usage goes like this: Instead of doing ...
15,691
C++
.h
386
36.15285
104
0.692399
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,573
sysmodule.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/sysmodule.h
#ifndef Py_CPYTHON_SYSMODULE_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif PyAPI_FUNC(PyObject *) _PySys_GetObjectId(_Py_Identifier *key); PyAPI_FUNC(int) _PySys_SetObjectId(_Py_Identifier *key, PyObject *); PyAPI_FUNC(size_t) _PySys_GetSizeOf(PyObject *); ...
547
C++
.h
15
35.066667
69
0.752852
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,574
pyerrors.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/pyerrors.h
#ifndef Py_CPYTHON_ERRORS_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif /* Error objects */ /* PyException_HEAD defines the initial segment of every exception class. */ #define PyException_HEAD PyObject_HEAD PyObject *dict;\ PyObject *args; PyO...
4,607
C++
.h
150
27.426667
76
0.724746
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,575
objimpl.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/objimpl.h
#ifndef Py_CPYTHON_OBJIMPL_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif /* This function returns the number of allocated memory blocks, regardless of size */ PyAPI_FUNC(Py_ssize_t) _Py_GetAllocatedBlocks(void); /* Macros */ #ifdef WITH_PYMALLOC PyAPI_FUNC(...
3,600
C++
.h
83
40.662651
85
0.679667
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,576
initconfig.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/initconfig.h
#ifndef Py_PYCORECONFIG_H #define Py_PYCORECONFIG_H #ifndef Py_LIMITED_API #ifdef __cplusplus extern "C" { #endif /* --- PyStatus ----------------------------------------------- */ typedef struct { enum { _PyStatus_TYPE_OK=0, _PyStatus_TYPE_ERROR=1, _PyStatus_TYPE_EXIT=2 } _type; c...
16,028
C++
.h
326
42.714724
102
0.672951
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,577
interpreteridobject.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/interpreteridobject.h
#ifndef Py_CPYTHON_INTERPRETERIDOBJECT_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif /* Interpreter ID Object */ PyAPI_DATA(PyTypeObject) _PyInterpreterID_Type; PyAPI_FUNC(PyObject *) _PyInterpreterID_New(int64_t); PyAPI_FUNC(PyObject *) _PyInterpreterStat...
456
C++
.h
14
31.214286
77
0.798627
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,578
traceback.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/traceback.h
#ifndef Py_CPYTHON_TRACEBACK_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif typedef struct _traceback { PyObject_HEAD struct _traceback *tb_next; struct _frame *tb_frame; int tb_lasti; int tb_lineno; } PyTracebackObject; PyAPI_FUNC(int) _...
473
C++
.h
18
23.944444
72
0.733925
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,579
pystate.h
relativty_Relativty/Relativty_Driver/include/Python/cpython/pystate.h
#ifndef Py_CPYTHON_PYSTATE_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif #include "cpython/initconfig.h" PyAPI_FUNC(int) _PyInterpreterState_RequiresIDRef(PyInterpreterState *); PyAPI_FUNC(void) _PyInterpreterState_RequireIDRef(PyInterpreterState *, int); ...
9,810
C++
.h
198
45.333333
91
0.734463
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,580
pycore_getopt.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_getopt.h
#ifndef Py_INTERNAL_PYGETOPT_H #define Py_INTERNAL_PYGETOPT_H #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif extern int _PyOS_opterr; extern Py_ssize_t _PyOS_optind; extern const wchar_t *_PyOS_optarg; extern void _PyOS_ResetGetOpt(void); typedef struct { const wchar_t *name; ...
490
C++
.h
16
28.5
80
0.747863
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,581
pycore_fileutils.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_fileutils.h
#ifndef Py_INTERNAL_FILEUTILS_H #define Py_INTERNAL_FILEUTILS_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "Py_BUILD_CORE must be defined to include this header" #endif #include <locale.h> /* struct lconv */ PyAPI_DATA(int) _Py_HasFileSystemDefaultEncodeErrors; PyAPI_FUNC(int) _Py_Decod...
1,254
C++
.h
42
26.642857
74
0.7175
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,582
pycore_gil.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_gil.h
#ifndef Py_INTERNAL_GIL_H #define Py_INTERNAL_GIL_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "pycore_condvar.h" #include "pycore_atomic.h" #ifndef Py_HAVE_CONDVAR # error You need either a POSIX-compatible or a Windows system! ...
1,520
C++
.h
44
31.272727
74
0.729932
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,583
pycore_ceval.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_ceval.h
#ifndef Py_INTERNAL_CEVAL_H #define Py_INTERNAL_CEVAL_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "pycore_atomic.h" #include "pycore_pystate.h" #include "pythread.h" PyAPI_FUNC(void) _Py_FinishPendingCalls(_PyRuntimeState *runtim...
966
C++
.h
32
28.03125
67
0.751346
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,584
pycore_pyerrors.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_pyerrors.h
#ifndef Py_INTERNAL_PYERRORS_H #define Py_INTERNAL_PYERRORS_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif static inline PyObject* _PyErr_Occurred(PyThreadState *tstate) { return tstate == NULL ? NULL : tstate->curexc_type; } PyAPI_FUNC...
1,329
C++
.h
49
23.816327
76
0.726125
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,585
pycore_hamt.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_hamt.h
#ifndef Py_INTERNAL_HAMT_H #define Py_INTERNAL_HAMT_H #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #define _Py_HAMT_MAX_TREE_DEPTH 7 #define PyHamt_Check(o) (Py_TYPE(o) == &_PyHamt_Type) /* Abstract tree node. */ typedef struct { PyObject_HEAD } PyHamtNode; /* An HAMT im...
3,128
C++
.h
84
34.535714
76
0.723772
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,586
pycore_context.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_context.h
#ifndef Py_INTERNAL_CONTEXT_H #define Py_INTERNAL_CONTEXT_H #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "pycore_hamt.h" struct _pycontextobject { PyObject_HEAD PyContext *ctx_prev; PyHamtObject *ctx_vars; PyObject *ctx_weakreflist; int ctx_entered; }...
779
C++
.h
32
20.90625
52
0.724559
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,587
pycore_traceback.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_traceback.h
#ifndef Py_INTERNAL_TRACEBACK_H #define Py_INTERNAL_TRACEBACK_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "pystate.h" /* PyInterpreterState */ /* Write the Python traceback into the file 'fd'. For example: Traceback (mo...
3,076
C++
.h
71
39.422535
79
0.739597
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,588
pycore_pymem.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_pymem.h
#ifndef Py_INTERNAL_PYMEM_H #define Py_INTERNAL_PYMEM_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "objimpl.h" #include "pymem.h" /* GC runtime state */ /* If we change this, we need to change the default value in the signatu...
8,217
C++
.h
174
43.017241
79
0.747033
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,589
pycore_code.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_code.h
#ifndef Py_INTERNAL_CODE_H #define Py_INTERNAL_CODE_H #ifdef __cplusplus extern "C" { #endif typedef struct { PyObject *ptr; /* Cached pointer (borrowed reference) */ uint64_t globals_ver; /* ma_version of global dict */ uint64_t builtins_ver; /* ma_version of builtin dict */ } _PyOpcache_LoadGlobal; s...
542
C++
.h
22
21.909091
61
0.694553
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,590
pycore_object.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_object.h
#ifndef Py_INTERNAL_OBJECT_H #define Py_INTERNAL_OBJECT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "pycore_pystate.h" /* _PyRuntime */ PyAPI_FUNC(int) _PyType_CheckConsistency(PyTypeObject *type); PyAPI_FUNC(int) _PyDict_Check...
2,896
C++
.h
70
35.071429
80
0.646181
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,591
pycore_atomic.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_atomic.h
#ifndef Py_ATOMIC_H #define Py_ATOMIC_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "dynamic_annotations.h" #include "pyconfig.h" #if defined(HAVE_STD_ATOMIC) #include <stdatomic.h> #endif #if defined(_MSC_VER) #include <intrin....
16,944
C++
.h
494
29.269231
106
0.628585
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,592
pycore_pyhash.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_pyhash.h
#ifndef Py_INTERNAL_HASH_H #define Py_INTERNAL_HASH_H #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif uint64_t _Py_KeyedHash(uint64_t, const char *, Py_ssize_t); #endif
206
C++
.h
7
28
59
0.770408
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,593
pycore_accu.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_accu.h
#ifndef Py_LIMITED_API #ifndef Py_INTERNAL_ACCU_H #define Py_INTERNAL_ACCU_H #ifdef __cplusplus extern "C" { #endif /*** This is a private API for use by the interpreter and the stdlib. *** Its definition may be changed or removed at any moment. ***/ #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_COR...
1,126
C++
.h
32
33.53125
75
0.74333
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,594
pycore_condvar.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_condvar.h
#ifndef Py_INTERNAL_CONDVAR_H #define Py_INTERNAL_CONDVAR_H #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #ifndef _POSIX_THREADS /* This means pthreads are not implemented in libc headers, hence the macro not present in unistd.h. But they still can be implemented as an external ...
2,809
C++
.h
75
35.306667
76
0.75829
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,595
pycore_pystate.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_pystate.h
#ifndef Py_INTERNAL_PYSTATE_H #define Py_INTERNAL_PYSTATE_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "cpython/initconfig.h" #include "fileobject.h" #include "pystate.h" #include "pythread.h" #include "sysmodule.h" #include "pyco...
9,560
C++
.h
247
34.283401
82
0.720598
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,596
pycore_tupleobject.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_tupleobject.h
#ifndef Py_INTERNAL_TUPLEOBJECT_H #define Py_INTERNAL_TUPLEOBJECT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "tupleobject.h" #define _PyTuple_ITEMS(op) (_PyTuple_CAST(op)->ob_item) PyAPI_FUNC(PyObject *) _PyTuple_FromArray(PyObj...
418
C++
.h
15
26.6
73
0.756892
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,597
pycore_pylifecycle.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_pylifecycle.h
#ifndef Py_INTERNAL_LIFECYCLE_H #define Py_INTERNAL_LIFECYCLE_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "pycore_initconfig.h" /* _PyArgv */ #include "pycore_pystate.h" /* _PyRuntimeState */ /* True if the main interprete...
3,758
C++
.h
95
37.4
78
0.790774
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,598
pycore_initconfig.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_initconfig.h
#ifndef Py_INTERNAL_CORECONFIG_H #define Py_INTERNAL_CORECONFIG_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "pycore_pystate.h" /* _PyRuntimeState */ /* --- PyStatus ----------------------------------------------- */ /* Almost ...
5,168
C++
.h
134
35.30597
81
0.656138
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
24,599
pycore_pathconfig.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_pathconfig.h
#ifndef Py_INTERNAL_PATHCONFIG_H #define Py_INTERNAL_PATHCONFIG_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif typedef struct _PyPathConfig { /* Full path to the Python program */ wchar_t *program_full_path; wchar_t *prefix; w...
2,037
C++
.h
66
27.666667
72
0.721713
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,600
pycore_warnings.h
relativty_Relativty/Relativty_Driver/include/Python/internal/pycore_warnings.h
#ifndef Py_INTERNAL_WARNINGS_H #define Py_INTERNAL_WARNINGS_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "object.h" struct _warnings_runtime_state { /* Both 'filters' and 'onceregistry' can be set in warnings.py; get_wa...
591
C++
.h
21
25.666667
69
0.713781
relativty/Relativty
6,445
342
29
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
24,602
maximizer.cpp
wwmm_easyeffects/src/maximizer.cpp
/* * Copyright © 2017-2024 Wellington Wallace * * This file is part of Easy Effects. * * Easy Effects is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at yo...
4,398
C++
.cpp
121
31.041322
92
0.604761
wwmm/easyeffects
6,414
268
211
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,603
autogain.cpp
wwmm_easyeffects/src/autogain.cpp
/* * Copyright © 2017-2024 Wellington Wallace * * This file is part of Easy Effects. * * Easy Effects is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at yo...
11,495
C++
.cpp
305
29.662295
119
0.597602
wwmm/easyeffects
6,414
268
211
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,604
stereo_tools_ui.cpp
wwmm_easyeffects/src/stereo_tools_ui.cpp
/* * Copyright © 2017-2024 Wellington Wallace * * This file is part of Easy Effects. * * Easy Effects is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at yo...
10,344
C++
.cpp
194
48.948454
120
0.724484
wwmm/easyeffects
6,414
268
211
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,605
delay.cpp
wwmm_easyeffects/src/delay.cpp
/* * Copyright © 2017-2024 Wellington Wallace * * This file is part of Easy Effects. * * Easy Effects is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at yo...
4,229
C++
.cpp
117
31.264957
105
0.648616
wwmm/easyeffects
6,414
268
211
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,606
deesser_ui.cpp
wwmm_easyeffects/src/deesser_ui.cpp
/* * Copyright © 2017-2024 Wellington Wallace * * This file is part of Easy Effects. * * Easy Effects is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at yo...
10,429
C++
.cpp
218
42.779817
120
0.698322
wwmm/easyeffects
6,414
268
211
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,607
bass_enhancer_preset.cpp
wwmm_easyeffects/src/bass_enhancer_preset.cpp
/* * Copyright © 2017-2024 Wellington Wallace * * This file is part of Easy Effects. * * Easy Effects is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at yo...
3,192
C++
.cpp
56
52.946429
103
0.713736
wwmm/easyeffects
6,414
268
211
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,608
equalizer_band_box.cpp
wwmm_easyeffects/src/equalizer_band_box.cpp
/* * Copyright © 2017-2024 Wellington Wallace * * This file is part of Easy Effects. * * Easy Effects is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at yo...
8,221
C++
.cpp
174
44.04023
118
0.736631
wwmm/easyeffects
6,414
268
211
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
24,609
presets_menu.cpp
wwmm_easyeffects/src/presets_menu.cpp
/* * Copyright © 2017-2024 Wellington Wallace * * This file is part of Easy Effects. * * Easy Effects is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at yo...
29,611
C++
.cpp
537
45.705773
120
0.644652
wwmm/easyeffects
6,414
268
211
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false