Ticket #92 (new defect)

Opened 3 months ago

public enums in extern blocks

Reported by: robertwb Assigned to: somebody
Priority: major Milestone: wishlist
Component: Parsing Version:
Keywords: Cc:

Description

This makes sense

cdef extern from *:
    cdef public enum:
        A
        B
        C
        D

As the public defines the enums values to be in the (python) module scope. However, the parser rejects the double visibility.