You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then when I query for the import string with the constant or typedef's value, the getimport function will not work (of course):
dill.source.getimport(constant)
This is a meaningless request, because dill.source.getimport(constant) will look at the value of constant to determine the import, which is a string, 'foo'.
In order to support the look-up of typedefs and constants' import paths, something different would need to be attempted, likely involving reflection.
The text was updated successfully, but these errors were encountered:
Currently, if I set up a constant or typedef:
Then when I query for the import string with the constant or typedef's value, the getimport function will not work (of course):
This is a meaningless request, because
dill.source.getimport(constant)
will look at the value of constant to determine the import, which is a string, 'foo'.In order to support the look-up of typedefs and constants' import paths, something different would need to be attempted, likely involving reflection.
The text was updated successfully, but these errors were encountered: