├── .gitattributes ├── .github ├── contributing.md └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENCE ├── README.md ├── cmake └── MayaConfig.cmake ├── cmdc.mod ├── docker ├── Dockerfile.build-2018.7 ├── Dockerfile.build-2019.3 ├── Dockerfile.build-2020.4 ├── Dockerfile.build-2022.3 ├── Dockerfile.build-2023 └── Dockerfile.build-2024 ├── os ├── README.md ├── linux │ ├── 2.7 │ │ └── lib │ │ │ └── libpython2.7.so │ ├── 3.10 │ │ └── lib │ │ │ └── libpython3.10.so │ ├── 3.7 │ │ └── lib │ │ │ └── libpython3.7m.so │ └── 3.9 │ │ └── lib │ │ └── libpython3.9.so ├── mac │ ├── .DS_Store │ ├── 2.7 │ │ ├── .DS_Store │ │ ├── include │ │ │ ├── Python-ast.h │ │ │ ├── Python.h │ │ │ ├── abstract.h │ │ │ ├── asdl.h │ │ │ ├── ast.h │ │ │ ├── bitset.h │ │ │ ├── boolobject.h │ │ │ ├── bufferobject.h │ │ │ ├── bytearrayobject.h │ │ │ ├── bytes_methods.h │ │ │ ├── bytesobject.h │ │ │ ├── cStringIO.h │ │ │ ├── cellobject.h │ │ │ ├── ceval.h │ │ │ ├── classobject.h │ │ │ ├── cobject.h │ │ │ ├── code.h │ │ │ ├── codecs.h │ │ │ ├── compile.h │ │ │ ├── complexobject.h │ │ │ ├── datetime.h │ │ │ ├── descrobject.h │ │ │ ├── dictobject.h │ │ │ ├── dtoa.h │ │ │ ├── enumobject.h │ │ │ ├── errcode.h │ │ │ ├── eval.h │ │ │ ├── fileobject.h │ │ │ ├── floatobject.h │ │ │ ├── frameobject.h │ │ │ ├── funcobject.h │ │ │ ├── genobject.h │ │ │ ├── graminit.h │ │ │ ├── grammar.h │ │ │ ├── import.h │ │ │ ├── intobject.h │ │ │ ├── intrcheck.h │ │ │ ├── iterobject.h │ │ │ ├── listobject.h │ │ │ ├── longintrepr.h │ │ │ ├── longobject.h │ │ │ ├── marshal.h │ │ │ ├── memoryobject.h │ │ │ ├── metagrammar.h │ │ │ ├── methodobject.h │ │ │ ├── modsupport.h │ │ │ ├── moduleobject.h │ │ │ ├── node.h │ │ │ ├── object.h │ │ │ ├── objimpl.h │ │ │ ├── opcode.h │ │ │ ├── osdefs.h │ │ │ ├── parsetok.h │ │ │ ├── patchlevel.h │ │ │ ├── pgen.h │ │ │ ├── pgenheaders.h │ │ │ ├── py_curses.h │ │ │ ├── pyarena.h │ │ │ ├── pycapsule.h │ │ │ ├── pyconfig.h │ │ │ ├── pyctype.h │ │ │ ├── pydebug.h │ │ │ ├── pyerrors.h │ │ │ ├── pyexpat.h │ │ │ ├── pyfpe.h │ │ │ ├── pygetopt.h │ │ │ ├── pymacconfig.h │ │ │ ├── pymactoolbox.h │ │ │ ├── pymath.h │ │ │ ├── pymem.h │ │ │ ├── pyport.h │ │ │ ├── pystate.h │ │ │ ├── pystrcmp.h │ │ │ ├── pystrtod.h │ │ │ ├── pythonrun.h │ │ │ ├── pythread.h │ │ │ ├── rangeobject.h │ │ │ ├── setobject.h │ │ │ ├── sliceobject.h │ │ │ ├── stringobject.h │ │ │ ├── structmember.h │ │ │ ├── structseq.h │ │ │ ├── symtable.h │ │ │ ├── sysmodule.h │ │ │ ├── timefuncs.h │ │ │ ├── token.h │ │ │ ├── traceback.h │ │ │ ├── tupleobject.h │ │ │ ├── ucnhash.h │ │ │ ├── unicodeobject.h │ │ │ ├── warnings.h │ │ │ └── weakrefobject.h │ │ └── lib │ │ │ ├── .DS_Store │ │ │ └── libpython2.7.dylib │ ├── 3.10 │ │ ├── include │ │ │ ├── Python.h │ │ │ ├── abstract.h │ │ │ ├── bltinmodule.h │ │ │ ├── boolobject.h │ │ │ ├── bytearrayobject.h │ │ │ ├── bytesobject.h │ │ │ ├── cellobject.h │ │ │ ├── ceval.h │ │ │ ├── classobject.h │ │ │ ├── code.h │ │ │ ├── codecs.h │ │ │ ├── compile.h │ │ │ ├── complexobject.h │ │ │ ├── context.h │ │ │ ├── cpython │ │ │ │ ├── abstract.h │ │ │ │ ├── bytearrayobject.h │ │ │ │ ├── bytesobject.h │ │ │ │ ├── ceval.h │ │ │ │ ├── code.h │ │ │ │ ├── compile.h │ │ │ │ ├── dictobject.h │ │ │ │ ├── fileobject.h │ │ │ │ ├── fileutils.h │ │ │ │ ├── frameobject.h │ │ │ │ ├── import.h │ │ │ │ ├── initconfig.h │ │ │ │ ├── interpreteridobject.h │ │ │ │ ├── listobject.h │ │ │ │ ├── methodobject.h │ │ │ │ ├── object.h │ │ │ │ ├── objimpl.h │ │ │ │ ├── odictobject.h │ │ │ │ ├── picklebufobject.h │ │ │ │ ├── pyctype.h │ │ │ │ ├── pydebug.h │ │ │ │ ├── pyerrors.h │ │ │ │ ├── pyfpe.h │ │ │ │ ├── pylifecycle.h │ │ │ │ ├── pymem.h │ │ │ │ ├── pystate.h │ │ │ │ ├── pythonrun.h │ │ │ │ ├── pytime.h │ │ │ │ ├── sysmodule.h │ │ │ │ ├── traceback.h │ │ │ │ ├── tupleobject.h │ │ │ │ └── unicodeobject.h │ │ │ ├── datetime.h │ │ │ ├── descrobject.h │ │ │ ├── dictobject.h │ │ │ ├── dynamic_annotations.h │ │ │ ├── enumobject.h │ │ │ ├── errcode.h │ │ │ ├── eval.h │ │ │ ├── exports.h │ │ │ ├── fileobject.h │ │ │ ├── fileutils.h │ │ │ ├── floatobject.h │ │ │ ├── frameobject.h │ │ │ ├── funcobject.h │ │ │ ├── genericaliasobject.h │ │ │ ├── genobject.h │ │ │ ├── import.h │ │ │ ├── internal │ │ │ │ ├── pycore_abstract.h │ │ │ │ ├── pycore_accu.h │ │ │ │ ├── pycore_asdl.h │ │ │ │ ├── pycore_ast.h │ │ │ │ ├── pycore_ast_state.h │ │ │ │ ├── pycore_atomic.h │ │ │ │ ├── pycore_atomic_funcs.h │ │ │ │ ├── pycore_bitutils.h │ │ │ │ ├── pycore_blocks_output_buffer.h │ │ │ │ ├── pycore_bytes_methods.h │ │ │ │ ├── pycore_call.h │ │ │ │ ├── pycore_ceval.h │ │ │ │ ├── pycore_code.h │ │ │ │ ├── pycore_compile.h │ │ │ │ ├── pycore_condvar.h │ │ │ │ ├── pycore_context.h │ │ │ │ ├── pycore_dtoa.h │ │ │ │ ├── pycore_fileutils.h │ │ │ │ ├── pycore_format.h │ │ │ │ ├── pycore_gc.h │ │ │ │ ├── pycore_getopt.h │ │ │ │ ├── pycore_gil.h │ │ │ │ ├── pycore_hamt.h │ │ │ │ ├── pycore_hashtable.h │ │ │ │ ├── pycore_import.h │ │ │ │ ├── pycore_initconfig.h │ │ │ │ ├── pycore_interp.h │ │ │ │ ├── pycore_list.h │ │ │ │ ├── pycore_long.h │ │ │ │ ├── pycore_moduleobject.h │ │ │ │ ├── pycore_object.h │ │ │ │ ├── pycore_parser.h │ │ │ │ ├── pycore_pathconfig.h │ │ │ │ ├── pycore_pyarena.h │ │ │ │ ├── pycore_pyerrors.h │ │ │ │ ├── pycore_pyhash.h │ │ │ │ ├── pycore_pylifecycle.h │ │ │ │ ├── pycore_pymem.h │ │ │ │ ├── pycore_pystate.h │ │ │ │ ├── pycore_runtime.h │ │ │ │ ├── pycore_structseq.h │ │ │ │ ├── pycore_symtable.h │ │ │ │ ├── pycore_sysmodule.h │ │ │ │ ├── pycore_traceback.h │ │ │ │ ├── pycore_tuple.h │ │ │ │ ├── pycore_ucnhash.h │ │ │ │ ├── pycore_unionobject.h │ │ │ │ └── pycore_warnings.h │ │ │ ├── interpreteridobject.h │ │ │ ├── intrcheck.h │ │ │ ├── iterobject.h │ │ │ ├── listobject.h │ │ │ ├── longintrepr.h │ │ │ ├── longobject.h │ │ │ ├── marshal.h │ │ │ ├── memoryobject.h │ │ │ ├── methodobject.h │ │ │ ├── modsupport.h │ │ │ ├── moduleobject.h │ │ │ ├── namespaceobject.h │ │ │ ├── object.h │ │ │ ├── objimpl.h │ │ │ ├── opcode.h │ │ │ ├── osdefs.h │ │ │ ├── osmodule.h │ │ │ ├── patchlevel.h │ │ │ ├── py_curses.h │ │ │ ├── pycapsule.h │ │ │ ├── pyconfig.h │ │ │ ├── pydtrace.h │ │ │ ├── pyerrors.h │ │ │ ├── pyexpat.h │ │ │ ├── pyframe.h │ │ │ ├── pyhash.h │ │ │ ├── pylifecycle.h │ │ │ ├── pymacconfig.h │ │ │ ├── pymacro.h │ │ │ ├── pymath.h │ │ │ ├── pymem.h │ │ │ ├── pyport.h │ │ │ ├── pystate.h │ │ │ ├── pystrcmp.h │ │ │ ├── pystrhex.h │ │ │ ├── pystrtod.h │ │ │ ├── pythonrun.h │ │ │ ├── pythread.h │ │ │ ├── rangeobject.h │ │ │ ├── setobject.h │ │ │ ├── sliceobject.h │ │ │ ├── structmember.h │ │ │ ├── structseq.h │ │ │ ├── sysmodule.h │ │ │ ├── token.h │ │ │ ├── traceback.h │ │ │ ├── tracemalloc.h │ │ │ ├── tupleobject.h │ │ │ ├── typeslots.h │ │ │ ├── unicodeobject.h │ │ │ ├── warnings.h │ │ │ └── weakrefobject.h │ │ └── lib │ │ │ └── libpython3.10.dylib │ ├── 3.7 │ │ ├── .DS_Store │ │ ├── include │ │ │ ├── Python-ast.h │ │ │ ├── Python.h │ │ │ ├── abstract.h │ │ │ ├── accu.h │ │ │ ├── asdl.h │ │ │ ├── ast.h │ │ │ ├── bitset.h │ │ │ ├── bltinmodule.h │ │ │ ├── boolobject.h │ │ │ ├── bytearrayobject.h │ │ │ ├── bytes_methods.h │ │ │ ├── bytesobject.h │ │ │ ├── cellobject.h │ │ │ ├── ceval.h │ │ │ ├── classobject.h │ │ │ ├── code.h │ │ │ ├── codecs.h │ │ │ ├── compile.h │ │ │ ├── complexobject.h │ │ │ ├── context.h │ │ │ ├── datetime.h │ │ │ ├── descrobject.h │ │ │ ├── dictobject.h │ │ │ ├── dtoa.h │ │ │ ├── dynamic_annotations.h │ │ │ ├── enumobject.h │ │ │ ├── errcode.h │ │ │ ├── eval.h │ │ │ ├── fileobject.h │ │ │ ├── fileutils.h │ │ │ ├── floatobject.h │ │ │ ├── frameobject.h │ │ │ ├── funcobject.h │ │ │ ├── genobject.h │ │ │ ├── graminit.h │ │ │ ├── grammar.h │ │ │ ├── import.h │ │ │ ├── internal │ │ │ │ ├── ceval.h │ │ │ │ ├── condvar.h │ │ │ │ ├── context.h │ │ │ │ ├── gil.h │ │ │ │ ├── hamt.h │ │ │ │ ├── hash.h │ │ │ │ ├── import.h │ │ │ │ ├── mem.h │ │ │ │ ├── pygetopt.h │ │ │ │ ├── pystate.h │ │ │ │ └── warnings.h │ │ │ ├── intrcheck.h │ │ │ ├── iterobject.h │ │ │ ├── listobject.h │ │ │ ├── longintrepr.h │ │ │ ├── longobject.h │ │ │ ├── marshal.h │ │ │ ├── memoryobject.h │ │ │ ├── metagrammar.h │ │ │ ├── methodobject.h │ │ │ ├── modsupport.h │ │ │ ├── moduleobject.h │ │ │ ├── namespaceobject.h │ │ │ ├── node.h │ │ │ ├── object.h │ │ │ ├── objimpl.h │ │ │ ├── odictobject.h │ │ │ ├── opcode.h │ │ │ ├── osdefs.h │ │ │ ├── osmodule.h │ │ │ ├── parsetok.h │ │ │ ├── patchlevel.h │ │ │ ├── pgen.h │ │ │ ├── pgenheaders.h │ │ │ ├── py_curses.h │ │ │ ├── pyarena.h │ │ │ ├── pyatomic.h │ │ │ ├── pycapsule.h │ │ │ ├── pyconfig.h │ │ │ ├── pyctype.h │ │ │ ├── pydebug.h │ │ │ ├── pydtrace.h │ │ │ ├── pyerrors.h │ │ │ ├── pyexpat.h │ │ │ ├── pyfpe.h │ │ │ ├── pyhash.h │ │ │ ├── pylifecycle.h │ │ │ ├── pymacconfig.h │ │ │ ├── pymacro.h │ │ │ ├── pymath.h │ │ │ ├── pymem.h │ │ │ ├── pyport.h │ │ │ ├── pystate.h │ │ │ ├── pystrcmp.h │ │ │ ├── pystrhex.h │ │ │ ├── pystrtod.h │ │ │ ├── pythonrun.h │ │ │ ├── pythread.h │ │ │ ├── pytime.h │ │ │ ├── rangeobject.h │ │ │ ├── setobject.h │ │ │ ├── sliceobject.h │ │ │ ├── structmember.h │ │ │ ├── structseq.h │ │ │ ├── symtable.h │ │ │ ├── sysmodule.h │ │ │ ├── token.h │ │ │ ├── traceback.h │ │ │ ├── tupleobject.h │ │ │ ├── typeslots.h │ │ │ ├── ucnhash.h │ │ │ ├── unicodeobject.h │ │ │ ├── warnings.h │ │ │ └── weakrefobject.h │ │ └── lib │ │ │ ├── libpython3.7.dylib │ │ │ └── libpython3.7m.dylib │ └── 3.9 │ │ ├── include │ │ ├── Python-ast.h │ │ ├── Python.h │ │ ├── abstract.h │ │ ├── asdl.h │ │ ├── ast.h │ │ ├── bitset.h │ │ ├── bltinmodule.h │ │ ├── boolobject.h │ │ ├── bytearrayobject.h │ │ ├── bytesobject.h │ │ ├── cellobject.h │ │ ├── ceval.h │ │ ├── classobject.h │ │ ├── code.h │ │ ├── codecs.h │ │ ├── compile.h │ │ ├── complexobject.h │ │ ├── context.h │ │ ├── cpython │ │ │ ├── abstract.h │ │ │ ├── bytearrayobject.h │ │ │ ├── bytesobject.h │ │ │ ├── ceval.h │ │ │ ├── code.h │ │ │ ├── dictobject.h │ │ │ ├── fileobject.h │ │ │ ├── fileutils.h │ │ │ ├── frameobject.h │ │ │ ├── import.h │ │ │ ├── initconfig.h │ │ │ ├── interpreteridobject.h │ │ │ ├── listobject.h │ │ │ ├── methodobject.h │ │ │ ├── object.h │ │ │ ├── objimpl.h │ │ │ ├── pyerrors.h │ │ │ ├── pylifecycle.h │ │ │ ├── pymem.h │ │ │ ├── pystate.h │ │ │ ├── sysmodule.h │ │ │ ├── traceback.h │ │ │ ├── tupleobject.h │ │ │ └── unicodeobject.h │ │ ├── datetime.h │ │ ├── descrobject.h │ │ ├── dictobject.h │ │ ├── dynamic_annotations.h │ │ ├── enumobject.h │ │ ├── errcode.h │ │ ├── eval.h │ │ ├── exports.h │ │ ├── fileobject.h │ │ ├── fileutils.h │ │ ├── floatobject.h │ │ ├── frameobject.h │ │ ├── funcobject.h │ │ ├── genericaliasobject.h │ │ ├── genobject.h │ │ ├── graminit.h │ │ ├── grammar.h │ │ ├── import.h │ │ ├── internal │ │ │ ├── pegen_interface.h │ │ │ ├── pycore_abstract.h │ │ │ ├── pycore_accu.h │ │ │ ├── pycore_atomic.h │ │ │ ├── pycore_bytes_methods.h │ │ │ ├── pycore_byteswap.h │ │ │ ├── pycore_call.h │ │ │ ├── pycore_ceval.h │ │ │ ├── pycore_code.h │ │ │ ├── pycore_condvar.h │ │ │ ├── pycore_context.h │ │ │ ├── pycore_dtoa.h │ │ │ ├── pycore_fileutils.h │ │ │ ├── pycore_gc.h │ │ │ ├── pycore_getopt.h │ │ │ ├── pycore_gil.h │ │ │ ├── pycore_hamt.h │ │ │ ├── pycore_hashtable.h │ │ │ ├── pycore_import.h │ │ │ ├── pycore_initconfig.h │ │ │ ├── pycore_interp.h │ │ │ ├── pycore_object.h │ │ │ ├── pycore_pathconfig.h │ │ │ ├── pycore_pyerrors.h │ │ │ ├── pycore_pyhash.h │ │ │ ├── pycore_pylifecycle.h │ │ │ ├── pycore_pymem.h │ │ │ ├── pycore_pystate.h │ │ │ ├── pycore_runtime.h │ │ │ ├── pycore_sysmodule.h │ │ │ ├── pycore_traceback.h │ │ │ ├── pycore_tupleobject.h │ │ │ └── pycore_warnings.h │ │ ├── interpreteridobject.h │ │ ├── intrcheck.h │ │ ├── iterobject.h │ │ ├── listobject.h │ │ ├── longintrepr.h │ │ ├── longobject.h │ │ ├── marshal.h │ │ ├── memoryobject.h │ │ ├── methodobject.h │ │ ├── modsupport.h │ │ ├── moduleobject.h │ │ ├── namespaceobject.h │ │ ├── node.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── odictobject.h │ │ ├── opcode.h │ │ ├── osdefs.h │ │ ├── osmodule.h │ │ ├── parsetok.h │ │ ├── patchlevel.h │ │ ├── picklebufobject.h │ │ ├── py_curses.h │ │ ├── pyarena.h │ │ ├── pycapsule.h │ │ ├── pyconfig.h │ │ ├── pyctype.h │ │ ├── pydebug.h │ │ ├── pydtrace.h │ │ ├── pyerrors.h │ │ ├── pyexpat.h │ │ ├── pyfpe.h │ │ ├── pyframe.h │ │ ├── pyhash.h │ │ ├── pylifecycle.h │ │ ├── pymacconfig.h │ │ ├── pymacro.h │ │ ├── pymath.h │ │ ├── pymem.h │ │ ├── pyport.h │ │ ├── pystate.h │ │ ├── pystrcmp.h │ │ ├── pystrhex.h │ │ ├── pystrtod.h │ │ ├── pythonrun.h │ │ ├── pythread.h │ │ ├── pytime.h │ │ ├── rangeobject.h │ │ ├── setobject.h │ │ ├── sliceobject.h │ │ ├── structmember.h │ │ ├── structseq.h │ │ ├── symtable.h │ │ ├── sysmodule.h │ │ ├── token.h │ │ ├── traceback.h │ │ ├── tracemalloc.h │ │ ├── tupleobject.h │ │ ├── typeslots.h │ │ ├── ucnhash.h │ │ ├── unicodeobject.h │ │ ├── warnings.h │ │ └── weakrefobject.h │ │ └── lib │ │ └── libpython3.9.dylib └── windows │ ├── 2.7 │ └── lib │ │ └── python27.lib │ ├── 3.10 │ └── lib │ │ └── python310.lib │ ├── 3.7 │ └── lib │ │ └── python37.lib │ └── 3.9 │ └── lib │ └── python39.lib ├── scripts ├── generate_stubs.py ├── mfn.py └── parse_header.py ├── src ├── CMakeLists.txt ├── ForwardDeclarations.h ├── MBoundingBox.cpp ├── MDGModifier.cpp ├── MDagModifier.cpp ├── MDagPath.cpp ├── MFn.Types.inl ├── MObject.cpp ├── MPlug.cpp ├── MSelectionList.cpp ├── Types.cpp ├── fn │ ├── CMakeLists.txt │ ├── MFnDagNode.cpp │ ├── MFnDependencyNode.cpp │ ├── MFnMesh.cpp │ └── MFnTransform.cpp ├── init.h ├── main.cpp ├── math │ ├── CMakeLists.txt │ ├── MEulerRotation.cpp │ ├── MMatrix.cpp │ ├── MPoint.cpp │ ├── MQuaternion.cpp │ ├── MTransformationMatrix.cpp │ └── MVector.cpp └── util │ ├── atov.hpp │ ├── obj.hpp │ └── plug.hpp └── tests ├── .gitignore ├── __init__.py ├── test_MBoundingBox.py ├── test_MDGModifier.py ├── test_MDagModifier.py ├── test_MDagPath.py ├── test_MFnDagNode.py ├── test_MFnMesh.py ├── test_MFnTransform.py ├── test_MMatrix.py ├── test_MObject.py ├── test_MObjectHandle.py ├── test_MPlug.py ├── test_MPoint.py ├── test_MQuaternion.py ├── test_MSelectionList.py ├── test_MTransformationMatrix.py ├── test_MVector.py ├── test_example.py └── test_mfn.py /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/README.md -------------------------------------------------------------------------------- /cmake/MayaConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/cmake/MayaConfig.cmake -------------------------------------------------------------------------------- /cmdc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/cmdc.mod -------------------------------------------------------------------------------- /docker/Dockerfile.build-2018.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/docker/Dockerfile.build-2018.7 -------------------------------------------------------------------------------- /docker/Dockerfile.build-2019.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/docker/Dockerfile.build-2019.3 -------------------------------------------------------------------------------- /docker/Dockerfile.build-2020.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/docker/Dockerfile.build-2020.4 -------------------------------------------------------------------------------- /docker/Dockerfile.build-2022.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/docker/Dockerfile.build-2022.3 -------------------------------------------------------------------------------- /docker/Dockerfile.build-2023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/docker/Dockerfile.build-2023 -------------------------------------------------------------------------------- /docker/Dockerfile.build-2024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/docker/Dockerfile.build-2024 -------------------------------------------------------------------------------- /os/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/README.md -------------------------------------------------------------------------------- /os/linux/2.7/lib/libpython2.7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/linux/2.7/lib/libpython2.7.so -------------------------------------------------------------------------------- /os/linux/3.10/lib/libpython3.10.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/linux/3.10/lib/libpython3.10.so -------------------------------------------------------------------------------- /os/linux/3.7/lib/libpython3.7m.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/linux/3.7/lib/libpython3.7m.so -------------------------------------------------------------------------------- /os/linux/3.9/lib/libpython3.9.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/linux/3.9/lib/libpython3.9.so -------------------------------------------------------------------------------- /os/mac/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/.DS_Store -------------------------------------------------------------------------------- /os/mac/2.7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/.DS_Store -------------------------------------------------------------------------------- /os/mac/2.7/include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/Python-ast.h -------------------------------------------------------------------------------- /os/mac/2.7/include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/Python.h -------------------------------------------------------------------------------- /os/mac/2.7/include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/abstract.h -------------------------------------------------------------------------------- /os/mac/2.7/include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/asdl.h -------------------------------------------------------------------------------- /os/mac/2.7/include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/ast.h -------------------------------------------------------------------------------- /os/mac/2.7/include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/bitset.h -------------------------------------------------------------------------------- /os/mac/2.7/include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/boolobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/bufferobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/bufferobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/bytearrayobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/bytes_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/bytes_methods.h -------------------------------------------------------------------------------- /os/mac/2.7/include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/bytesobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/cStringIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/cStringIO.h -------------------------------------------------------------------------------- /os/mac/2.7/include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/cellobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/ceval.h -------------------------------------------------------------------------------- /os/mac/2.7/include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/classobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/cobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/cobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/code.h -------------------------------------------------------------------------------- /os/mac/2.7/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/codecs.h -------------------------------------------------------------------------------- /os/mac/2.7/include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/compile.h -------------------------------------------------------------------------------- /os/mac/2.7/include/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/complexobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/datetime.h -------------------------------------------------------------------------------- /os/mac/2.7/include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/descrobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/dictobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/dtoa.h -------------------------------------------------------------------------------- /os/mac/2.7/include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/enumobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/errcode.h -------------------------------------------------------------------------------- /os/mac/2.7/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/eval.h -------------------------------------------------------------------------------- /os/mac/2.7/include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/fileobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/floatobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/frameobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/funcobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/genobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/graminit.h -------------------------------------------------------------------------------- /os/mac/2.7/include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/grammar.h -------------------------------------------------------------------------------- /os/mac/2.7/include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/import.h -------------------------------------------------------------------------------- /os/mac/2.7/include/intobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/intobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/intrcheck.h -------------------------------------------------------------------------------- /os/mac/2.7/include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/iterobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/listobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/longintrepr.h -------------------------------------------------------------------------------- /os/mac/2.7/include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/longobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/marshal.h -------------------------------------------------------------------------------- /os/mac/2.7/include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/memoryobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/metagrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/metagrammar.h -------------------------------------------------------------------------------- /os/mac/2.7/include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/methodobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/modsupport.h -------------------------------------------------------------------------------- /os/mac/2.7/include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/moduleobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/node.h -------------------------------------------------------------------------------- /os/mac/2.7/include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/object.h -------------------------------------------------------------------------------- /os/mac/2.7/include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/objimpl.h -------------------------------------------------------------------------------- /os/mac/2.7/include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/opcode.h -------------------------------------------------------------------------------- /os/mac/2.7/include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/osdefs.h -------------------------------------------------------------------------------- /os/mac/2.7/include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/parsetok.h -------------------------------------------------------------------------------- /os/mac/2.7/include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/patchlevel.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pgen.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pgenheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pgenheaders.h -------------------------------------------------------------------------------- /os/mac/2.7/include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/py_curses.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pyarena.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pycapsule.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pyconfig.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pyctype.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pydebug.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pyerrors.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pyexpat.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pyfpe.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pygetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pygetopt.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pymacconfig.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pymactoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pymactoolbox.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pymath.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pymem.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pyport.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pystate.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pystrcmp.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pystrtod.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pythonrun.h -------------------------------------------------------------------------------- /os/mac/2.7/include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/pythread.h -------------------------------------------------------------------------------- /os/mac/2.7/include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/rangeobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/setobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/sliceobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/stringobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/stringobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/structmember.h -------------------------------------------------------------------------------- /os/mac/2.7/include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/structseq.h -------------------------------------------------------------------------------- /os/mac/2.7/include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/symtable.h -------------------------------------------------------------------------------- /os/mac/2.7/include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/sysmodule.h -------------------------------------------------------------------------------- /os/mac/2.7/include/timefuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/timefuncs.h -------------------------------------------------------------------------------- /os/mac/2.7/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/token.h -------------------------------------------------------------------------------- /os/mac/2.7/include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/traceback.h -------------------------------------------------------------------------------- /os/mac/2.7/include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/tupleobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/ucnhash.h -------------------------------------------------------------------------------- /os/mac/2.7/include/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/unicodeobject.h -------------------------------------------------------------------------------- /os/mac/2.7/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/warnings.h -------------------------------------------------------------------------------- /os/mac/2.7/include/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/include/weakrefobject.h -------------------------------------------------------------------------------- /os/mac/2.7/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/lib/.DS_Store -------------------------------------------------------------------------------- /os/mac/2.7/lib/libpython2.7.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/2.7/lib/libpython2.7.dylib -------------------------------------------------------------------------------- /os/mac/3.10/include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/Python.h -------------------------------------------------------------------------------- /os/mac/3.10/include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/abstract.h -------------------------------------------------------------------------------- /os/mac/3.10/include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/bltinmodule.h -------------------------------------------------------------------------------- /os/mac/3.10/include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/boolobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/bytearrayobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/bytesobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cellobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/ceval.h -------------------------------------------------------------------------------- /os/mac/3.10/include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/classobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/code.h -------------------------------------------------------------------------------- /os/mac/3.10/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/codecs.h -------------------------------------------------------------------------------- /os/mac/3.10/include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/compile.h -------------------------------------------------------------------------------- /os/mac/3.10/include/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/complexobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/context.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/abstract.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/bytearrayobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/bytesobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/ceval.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/code.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/compile.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/dictobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/fileobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/fileutils.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/frameobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/import.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/initconfig.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/interpreteridobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/interpreteridobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/listobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/methodobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/object.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/objimpl.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/odictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/odictobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/picklebufobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/picklebufobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/pyctype.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/pydebug.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/pyerrors.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/pyfpe.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/pylifecycle.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/pymem.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/pystate.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/pythonrun.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/pytime.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/sysmodule.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/traceback.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/tupleobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/cpython/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/cpython/unicodeobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/datetime.h -------------------------------------------------------------------------------- /os/mac/3.10/include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/descrobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/dictobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/dynamic_annotations.h -------------------------------------------------------------------------------- /os/mac/3.10/include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/enumobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/errcode.h -------------------------------------------------------------------------------- /os/mac/3.10/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/eval.h -------------------------------------------------------------------------------- /os/mac/3.10/include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/exports.h -------------------------------------------------------------------------------- /os/mac/3.10/include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/fileobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/fileutils.h -------------------------------------------------------------------------------- /os/mac/3.10/include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/floatobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/frameobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/funcobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/genericaliasobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/genericaliasobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/genobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/import.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_abstract.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_accu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_accu.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_asdl.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_ast.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_ast_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_ast_state.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_atomic.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_atomic_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_atomic_funcs.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_bitutils.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_blocks_output_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_blocks_output_buffer.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_bytes_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_bytes_methods.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_call.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_ceval.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_code.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_compile.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_condvar.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_context.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_dtoa.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_fileutils.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_format.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_gc.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_getopt.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_gil.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_hamt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_hamt.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_hashtable.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_import.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_initconfig.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_interp.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_list.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_long.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_moduleobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_object.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_parser.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_pathconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_pathconfig.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_pyarena.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_pyerrors.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_pyhash.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_pylifecycle.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_pymem.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_pystate.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_runtime.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_structseq.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_symtable.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_sysmodule.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_traceback.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_tuple.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_ucnhash.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_unionobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_unionobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/internal/pycore_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/internal/pycore_warnings.h -------------------------------------------------------------------------------- /os/mac/3.10/include/interpreteridobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/interpreteridobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/intrcheck.h -------------------------------------------------------------------------------- /os/mac/3.10/include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/iterobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/listobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/longintrepr.h -------------------------------------------------------------------------------- /os/mac/3.10/include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/longobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/marshal.h -------------------------------------------------------------------------------- /os/mac/3.10/include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/memoryobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/methodobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/modsupport.h -------------------------------------------------------------------------------- /os/mac/3.10/include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/moduleobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/namespaceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/namespaceobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/object.h -------------------------------------------------------------------------------- /os/mac/3.10/include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/objimpl.h -------------------------------------------------------------------------------- /os/mac/3.10/include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/opcode.h -------------------------------------------------------------------------------- /os/mac/3.10/include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/osdefs.h -------------------------------------------------------------------------------- /os/mac/3.10/include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/osmodule.h -------------------------------------------------------------------------------- /os/mac/3.10/include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/patchlevel.h -------------------------------------------------------------------------------- /os/mac/3.10/include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/py_curses.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pycapsule.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pyconfig.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pydtrace.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pyerrors.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pyexpat.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pyframe.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pyhash.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pylifecycle.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pymacconfig.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pymacro.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pymath.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pymem.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pyport.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pystate.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pystrcmp.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pystrhex.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pystrtod.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pythonrun.h -------------------------------------------------------------------------------- /os/mac/3.10/include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/pythread.h -------------------------------------------------------------------------------- /os/mac/3.10/include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/rangeobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/setobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/sliceobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/structmember.h -------------------------------------------------------------------------------- /os/mac/3.10/include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/structseq.h -------------------------------------------------------------------------------- /os/mac/3.10/include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/sysmodule.h -------------------------------------------------------------------------------- /os/mac/3.10/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/token.h -------------------------------------------------------------------------------- /os/mac/3.10/include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/traceback.h -------------------------------------------------------------------------------- /os/mac/3.10/include/tracemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/tracemalloc.h -------------------------------------------------------------------------------- /os/mac/3.10/include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/tupleobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/typeslots.h -------------------------------------------------------------------------------- /os/mac/3.10/include/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/unicodeobject.h -------------------------------------------------------------------------------- /os/mac/3.10/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/warnings.h -------------------------------------------------------------------------------- /os/mac/3.10/include/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/include/weakrefobject.h -------------------------------------------------------------------------------- /os/mac/3.10/lib/libpython3.10.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.10/lib/libpython3.10.dylib -------------------------------------------------------------------------------- /os/mac/3.7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/.DS_Store -------------------------------------------------------------------------------- /os/mac/3.7/include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/Python-ast.h -------------------------------------------------------------------------------- /os/mac/3.7/include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/Python.h -------------------------------------------------------------------------------- /os/mac/3.7/include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/abstract.h -------------------------------------------------------------------------------- /os/mac/3.7/include/accu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/accu.h -------------------------------------------------------------------------------- /os/mac/3.7/include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/asdl.h -------------------------------------------------------------------------------- /os/mac/3.7/include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/ast.h -------------------------------------------------------------------------------- /os/mac/3.7/include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/bitset.h -------------------------------------------------------------------------------- /os/mac/3.7/include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/bltinmodule.h -------------------------------------------------------------------------------- /os/mac/3.7/include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/boolobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/bytearrayobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/bytes_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/bytes_methods.h -------------------------------------------------------------------------------- /os/mac/3.7/include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/bytesobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/cellobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/ceval.h -------------------------------------------------------------------------------- /os/mac/3.7/include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/classobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/code.h -------------------------------------------------------------------------------- /os/mac/3.7/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/codecs.h -------------------------------------------------------------------------------- /os/mac/3.7/include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/compile.h -------------------------------------------------------------------------------- /os/mac/3.7/include/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/complexobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/context.h -------------------------------------------------------------------------------- /os/mac/3.7/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/datetime.h -------------------------------------------------------------------------------- /os/mac/3.7/include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/descrobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/dictobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/dtoa.h -------------------------------------------------------------------------------- /os/mac/3.7/include/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/dynamic_annotations.h -------------------------------------------------------------------------------- /os/mac/3.7/include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/enumobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/errcode.h -------------------------------------------------------------------------------- /os/mac/3.7/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/eval.h -------------------------------------------------------------------------------- /os/mac/3.7/include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/fileobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/fileutils.h -------------------------------------------------------------------------------- /os/mac/3.7/include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/floatobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/frameobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/funcobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/genobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/graminit.h -------------------------------------------------------------------------------- /os/mac/3.7/include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/grammar.h -------------------------------------------------------------------------------- /os/mac/3.7/include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/import.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/ceval.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/condvar.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/context.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/gil.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/hamt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/hamt.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/hash.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/import.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/mem.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/pygetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/pygetopt.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/pystate.h -------------------------------------------------------------------------------- /os/mac/3.7/include/internal/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/internal/warnings.h -------------------------------------------------------------------------------- /os/mac/3.7/include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/intrcheck.h -------------------------------------------------------------------------------- /os/mac/3.7/include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/iterobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/listobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/longintrepr.h -------------------------------------------------------------------------------- /os/mac/3.7/include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/longobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/marshal.h -------------------------------------------------------------------------------- /os/mac/3.7/include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/memoryobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/metagrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/metagrammar.h -------------------------------------------------------------------------------- /os/mac/3.7/include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/methodobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/modsupport.h -------------------------------------------------------------------------------- /os/mac/3.7/include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/moduleobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/namespaceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/namespaceobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/node.h -------------------------------------------------------------------------------- /os/mac/3.7/include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/object.h -------------------------------------------------------------------------------- /os/mac/3.7/include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/objimpl.h -------------------------------------------------------------------------------- /os/mac/3.7/include/odictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/odictobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/opcode.h -------------------------------------------------------------------------------- /os/mac/3.7/include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/osdefs.h -------------------------------------------------------------------------------- /os/mac/3.7/include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/osmodule.h -------------------------------------------------------------------------------- /os/mac/3.7/include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/parsetok.h -------------------------------------------------------------------------------- /os/mac/3.7/include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/patchlevel.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pgen.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pgenheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pgenheaders.h -------------------------------------------------------------------------------- /os/mac/3.7/include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/py_curses.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pyarena.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pyatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pyatomic.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pycapsule.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pyconfig.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pyctype.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pydebug.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pydtrace.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pyerrors.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pyexpat.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pyfpe.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pyhash.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pylifecycle.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pymacconfig.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pymacro.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pymath.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pymem.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pyport.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pystate.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pystrcmp.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pystrhex.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pystrtod.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pythonrun.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pythread.h -------------------------------------------------------------------------------- /os/mac/3.7/include/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/pytime.h -------------------------------------------------------------------------------- /os/mac/3.7/include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/rangeobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/setobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/sliceobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/structmember.h -------------------------------------------------------------------------------- /os/mac/3.7/include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/structseq.h -------------------------------------------------------------------------------- /os/mac/3.7/include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/symtable.h -------------------------------------------------------------------------------- /os/mac/3.7/include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/sysmodule.h -------------------------------------------------------------------------------- /os/mac/3.7/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/token.h -------------------------------------------------------------------------------- /os/mac/3.7/include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/traceback.h -------------------------------------------------------------------------------- /os/mac/3.7/include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/tupleobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/typeslots.h -------------------------------------------------------------------------------- /os/mac/3.7/include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/ucnhash.h -------------------------------------------------------------------------------- /os/mac/3.7/include/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/unicodeobject.h -------------------------------------------------------------------------------- /os/mac/3.7/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/warnings.h -------------------------------------------------------------------------------- /os/mac/3.7/include/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/include/weakrefobject.h -------------------------------------------------------------------------------- /os/mac/3.7/lib/libpython3.7.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/lib/libpython3.7.dylib -------------------------------------------------------------------------------- /os/mac/3.7/lib/libpython3.7m.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.7/lib/libpython3.7m.dylib -------------------------------------------------------------------------------- /os/mac/3.9/include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/Python-ast.h -------------------------------------------------------------------------------- /os/mac/3.9/include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/Python.h -------------------------------------------------------------------------------- /os/mac/3.9/include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/abstract.h -------------------------------------------------------------------------------- /os/mac/3.9/include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/asdl.h -------------------------------------------------------------------------------- /os/mac/3.9/include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/ast.h -------------------------------------------------------------------------------- /os/mac/3.9/include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/bitset.h -------------------------------------------------------------------------------- /os/mac/3.9/include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/bltinmodule.h -------------------------------------------------------------------------------- /os/mac/3.9/include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/boolobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/bytearrayobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/bytesobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cellobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/ceval.h -------------------------------------------------------------------------------- /os/mac/3.9/include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/classobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/code.h -------------------------------------------------------------------------------- /os/mac/3.9/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/codecs.h -------------------------------------------------------------------------------- /os/mac/3.9/include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/compile.h -------------------------------------------------------------------------------- /os/mac/3.9/include/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/complexobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/context.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/abstract.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/bytearrayobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/bytesobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/ceval.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/code.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/dictobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/fileobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/fileutils.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/frameobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/import.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/initconfig.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/interpreteridobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/interpreteridobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/listobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/methodobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/object.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/objimpl.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/pyerrors.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/pylifecycle.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/pymem.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/pystate.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/sysmodule.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/traceback.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/tupleobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/cpython/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/cpython/unicodeobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/datetime.h -------------------------------------------------------------------------------- /os/mac/3.9/include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/descrobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/dictobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/dynamic_annotations.h -------------------------------------------------------------------------------- /os/mac/3.9/include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/enumobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/errcode.h -------------------------------------------------------------------------------- /os/mac/3.9/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/eval.h -------------------------------------------------------------------------------- /os/mac/3.9/include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/exports.h -------------------------------------------------------------------------------- /os/mac/3.9/include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/fileobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/fileutils.h -------------------------------------------------------------------------------- /os/mac/3.9/include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/floatobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/frameobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/funcobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/genericaliasobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/genericaliasobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/genobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/graminit.h -------------------------------------------------------------------------------- /os/mac/3.9/include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/grammar.h -------------------------------------------------------------------------------- /os/mac/3.9/include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/import.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pegen_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pegen_interface.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_abstract.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_accu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_accu.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_atomic.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_bytes_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_bytes_methods.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_byteswap.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_call.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_ceval.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_code.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_condvar.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_context.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_dtoa.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_fileutils.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_gc.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_getopt.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_gil.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_hamt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_hamt.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_hashtable.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_import.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_initconfig.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_interp.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_object.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_pathconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_pathconfig.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_pyerrors.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_pyhash.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_pylifecycle.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_pymem.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_pystate.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_runtime.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_sysmodule.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_traceback.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_tupleobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/internal/pycore_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/internal/pycore_warnings.h -------------------------------------------------------------------------------- /os/mac/3.9/include/interpreteridobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/interpreteridobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/intrcheck.h -------------------------------------------------------------------------------- /os/mac/3.9/include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/iterobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/listobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/longintrepr.h -------------------------------------------------------------------------------- /os/mac/3.9/include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/longobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/marshal.h -------------------------------------------------------------------------------- /os/mac/3.9/include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/memoryobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/methodobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/modsupport.h -------------------------------------------------------------------------------- /os/mac/3.9/include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/moduleobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/namespaceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/namespaceobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/node.h -------------------------------------------------------------------------------- /os/mac/3.9/include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/object.h -------------------------------------------------------------------------------- /os/mac/3.9/include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/objimpl.h -------------------------------------------------------------------------------- /os/mac/3.9/include/odictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/odictobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/opcode.h -------------------------------------------------------------------------------- /os/mac/3.9/include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/osdefs.h -------------------------------------------------------------------------------- /os/mac/3.9/include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/osmodule.h -------------------------------------------------------------------------------- /os/mac/3.9/include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/parsetok.h -------------------------------------------------------------------------------- /os/mac/3.9/include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/patchlevel.h -------------------------------------------------------------------------------- /os/mac/3.9/include/picklebufobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/picklebufobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/py_curses.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pyarena.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pycapsule.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pyconfig.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pyctype.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pydebug.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pydtrace.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pyerrors.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pyexpat.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pyfpe.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pyframe.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pyhash.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pylifecycle.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pymacconfig.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pymacro.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pymath.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pymem.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pyport.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pystate.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pystrcmp.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pystrhex.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pystrtod.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pythonrun.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pythread.h -------------------------------------------------------------------------------- /os/mac/3.9/include/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/pytime.h -------------------------------------------------------------------------------- /os/mac/3.9/include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/rangeobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/setobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/sliceobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/structmember.h -------------------------------------------------------------------------------- /os/mac/3.9/include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/structseq.h -------------------------------------------------------------------------------- /os/mac/3.9/include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/symtable.h -------------------------------------------------------------------------------- /os/mac/3.9/include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/sysmodule.h -------------------------------------------------------------------------------- /os/mac/3.9/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/token.h -------------------------------------------------------------------------------- /os/mac/3.9/include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/traceback.h -------------------------------------------------------------------------------- /os/mac/3.9/include/tracemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/tracemalloc.h -------------------------------------------------------------------------------- /os/mac/3.9/include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/tupleobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/typeslots.h -------------------------------------------------------------------------------- /os/mac/3.9/include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/ucnhash.h -------------------------------------------------------------------------------- /os/mac/3.9/include/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/unicodeobject.h -------------------------------------------------------------------------------- /os/mac/3.9/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/warnings.h -------------------------------------------------------------------------------- /os/mac/3.9/include/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/include/weakrefobject.h -------------------------------------------------------------------------------- /os/mac/3.9/lib/libpython3.9.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/mac/3.9/lib/libpython3.9.dylib -------------------------------------------------------------------------------- /os/windows/2.7/lib/python27.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/windows/2.7/lib/python27.lib -------------------------------------------------------------------------------- /os/windows/3.10/lib/python310.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/windows/3.10/lib/python310.lib -------------------------------------------------------------------------------- /os/windows/3.7/lib/python37.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/windows/3.7/lib/python37.lib -------------------------------------------------------------------------------- /os/windows/3.9/lib/python39.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/os/windows/3.9/lib/python39.lib -------------------------------------------------------------------------------- /scripts/generate_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/scripts/generate_stubs.py -------------------------------------------------------------------------------- /scripts/mfn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/scripts/mfn.py -------------------------------------------------------------------------------- /scripts/parse_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/scripts/parse_header.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/ForwardDeclarations.h -------------------------------------------------------------------------------- /src/MBoundingBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/MBoundingBox.cpp -------------------------------------------------------------------------------- /src/MDGModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/MDGModifier.cpp -------------------------------------------------------------------------------- /src/MDagModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/MDagModifier.cpp -------------------------------------------------------------------------------- /src/MDagPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/MDagPath.cpp -------------------------------------------------------------------------------- /src/MFn.Types.inl: -------------------------------------------------------------------------------- 1 | // Auto-generated by /Scripts/mfn.py at build time 2 | -------------------------------------------------------------------------------- /src/MObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/MObject.cpp -------------------------------------------------------------------------------- /src/MPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/MPlug.cpp -------------------------------------------------------------------------------- /src/MSelectionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/MSelectionList.cpp -------------------------------------------------------------------------------- /src/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/Types.cpp -------------------------------------------------------------------------------- /src/fn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/fn/CMakeLists.txt -------------------------------------------------------------------------------- /src/fn/MFnDagNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/fn/MFnDagNode.cpp -------------------------------------------------------------------------------- /src/fn/MFnDependencyNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/fn/MFnDependencyNode.cpp -------------------------------------------------------------------------------- /src/fn/MFnMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/fn/MFnMesh.cpp -------------------------------------------------------------------------------- /src/fn/MFnTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/fn/MFnTransform.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/init.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/math/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/math/CMakeLists.txt -------------------------------------------------------------------------------- /src/math/MEulerRotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/math/MEulerRotation.cpp -------------------------------------------------------------------------------- /src/math/MMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/math/MMatrix.cpp -------------------------------------------------------------------------------- /src/math/MPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/math/MPoint.cpp -------------------------------------------------------------------------------- /src/math/MQuaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/math/MQuaternion.cpp -------------------------------------------------------------------------------- /src/math/MTransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/math/MTransformationMatrix.cpp -------------------------------------------------------------------------------- /src/math/MVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/math/MVector.cpp -------------------------------------------------------------------------------- /src/util/atov.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/util/atov.hpp -------------------------------------------------------------------------------- /src/util/obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/util/obj.hpp -------------------------------------------------------------------------------- /src/util/plug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/src/util/plug.hpp -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_MBoundingBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MBoundingBox.py -------------------------------------------------------------------------------- /tests/test_MDGModifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MDGModifier.py -------------------------------------------------------------------------------- /tests/test_MDagModifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MDagModifier.py -------------------------------------------------------------------------------- /tests/test_MDagPath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MDagPath.py -------------------------------------------------------------------------------- /tests/test_MFnDagNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MFnDagNode.py -------------------------------------------------------------------------------- /tests/test_MFnMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MFnMesh.py -------------------------------------------------------------------------------- /tests/test_MFnTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MFnTransform.py -------------------------------------------------------------------------------- /tests/test_MMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MMatrix.py -------------------------------------------------------------------------------- /tests/test_MObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MObject.py -------------------------------------------------------------------------------- /tests/test_MObjectHandle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MObjectHandle.py -------------------------------------------------------------------------------- /tests/test_MPlug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MPlug.py -------------------------------------------------------------------------------- /tests/test_MPoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MPoint.py -------------------------------------------------------------------------------- /tests/test_MQuaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MQuaternion.py -------------------------------------------------------------------------------- /tests/test_MSelectionList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MSelectionList.py -------------------------------------------------------------------------------- /tests/test_MTransformationMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MTransformationMatrix.py -------------------------------------------------------------------------------- /tests/test_MVector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_MVector.py -------------------------------------------------------------------------------- /tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_example.py -------------------------------------------------------------------------------- /tests/test_mfn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/cmdc/HEAD/tests/test_mfn.py --------------------------------------------------------------------------------