Skip to content

exclude more functions to avoid errors wrapping CSPICE V.N0065 #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions mkwrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ def __setattr__(self, key, val):

# Reasons for excluding the following functions
# appnd*, etc. - not looked into translating a SpiceCell to a python object yet.
# axisar_c - haven't written code to parse arrays
# bodvar_c - deprecated
# bschoc_c, etc. - how to support const void * array
# ckw05_c - how to support SpiceCK05Subtype
# maxd_c - variable length inputs
# spkw18_c - how to support SpiceSPK18Subtype
# dafgs_c - how to deal with an array that doesn't have the number of elements
# dasec_c - how to handle void types in parameter list
# dafgh_c - does function actually exist? I found no C file ...
# dafgh_c, illumg_c - does function actually exist? I found no C file ...
# ucase_c - not needed for python
# gfevnt_c, gffove_c, gfocce_c, gfuds_c, uddc_c, uddf_c - how to support callbacks
# gfevnt_c, gffove_c, gfocce_c, gfuds_c, uddc_c, uddf_c, gfudb_c - how to support callbacks
# edterm_c, spkw20_c - can't yet handle array with no length specified
exclude_list = (
'cnames',

Expand All @@ -74,12 +74,14 @@ def __setattr__(self, key, val):

'dasec_c', 'ekpsel_c', 'ekrcec_c', 'gcpool_c', 'gnpool_c',

'dafgh_c', 'prefix_c',
'dafgh_c', 'prefix_c', 'illumg_c',

'lcase_c', 'ucase_c', 'getcml_c', 'lparse_c', 'lparsm_c', 'prompt_c',
'putcml_c', 'reordc_c', 'shellc_c', 'sumad_c', 'sumai_c',

'gfevnt_c', 'gffove_c', 'gfocce_c', 'gfuds_c', 'uddc_c', 'uddf_c',
'gfevnt_c', 'gffove_c', 'gfocce_c', 'gfuds_c', 'uddc_c', 'uddf_c', 'gfudb_c',

'edterm_c', 'spkw20_c',
)

module_defs = []
Expand Down