mkinit icon indicating copy to clipboard operation
mkinit copied to clipboard

Top Level Exception paths not handled in ubelt.

Open Erotemic opened this issue 7 years ago • 0 comments

In ubelt util_const I have to use __all__ = ['NoParam'] because mkinit does not extract the top level name from the following code:

try:
    NoParam  
except NameError:  # pragma: no cover
    NoParam = object.__new__(_NoParamType) 

Erotemic avatar May 27 '18 18:05 Erotemic