Skip to content
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

[doc] clarify that except does not match virtual subclasses of the specified exception type #56238

Closed
acooke mannequin opened this issue May 8, 2011 · 51 comments
Closed
Labels
3.9 only security fixes 3.10 only security fixes 3.11 only security fixes docs Documentation in the Doc dir interpreter-core (Objects, Python, Grammar, and Parser dirs) type-feature A feature request or enhancement

Comments

@acooke
Copy link
Mannequin

acooke mannequin commented May 8, 2011

BPO 12029
Nosy @gvanrossum, @warsaw, @ncoghlan, @pitrou, @benjaminp, @jwilk, @merwok, @alex, @bitdancer, @Trundle, @durban, @ericsnowcurrently, @berkerpeksag, @vadmium, @JimJJewett, @serhiy-storchaka, @charettes, @MojoVampire, @mbmccoy, @iritkatriel
PRs
  • bpo-12029: Exception handling should match subclasses #6461
  • bpo-12029: [doc] clarify that except does not match virtual subclasses of the specified exception type #32027
  • [3.10] bpo-12029: [doc] clarify that except does not match virtual subclasses of the specified exception type (GH-32027) #32034
  • [3.9] bpo-12029: [doc] clarify that except does not match virtual subclasses of the specified exception type (GH-32027) #32035
  • Dependencies
  • bpo-22540: speed up isinstance and issubclass for the usual cases
  • Files
  • issue12029.patch
  • exception_proper_subclass_matching_v2.patch
  • exception_proper_subclass_matching_v3.patch
  • pyobject_issubclass_isinstance_speedup.patch
  • exception_proper_subclass_matching_v4.patch
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = <Date 2022-03-21.21:28:15.751>
    created_at = <Date 2011-05-08.08:53:43.241>
    labels = ['interpreter-core', '3.9', '3.10', '3.11', 'type-feature', 'docs']
    title = '[doc] clarify that except does not match virtual subclasses of the specified exception type'
    updated_at = <Date 2022-03-21.21:28:16.619>
    user = 'https://bugs.python.org/acooke'

    bugs.python.org fields:

    activity = <Date 2022-03-21.21:28:16.619>
    actor = 'iritkatriel'
    assignee = 'docs@python'
    closed = True
    closed_date = <Date 2022-03-21.21:28:15.751>
    closer = 'iritkatriel'
    components = ['Documentation', 'Interpreter Core']
    creation = <Date 2011-05-08.08:53:43.241>
    creator = 'acooke'
    dependencies = ['22540']
    files = ['25548', '36777', '36778', '36779', '36780']
    hgrepos = []
    issue_num = 12029
    keywords = ['patch']
    message_count = 51.0
    messages = ['135521', '136712', '136717', '160399', '160418', '160426', '160427', '160428', '160430', '160432', '160435', '160436', '160461', '160468', '161473', '200418', '200420', '200421', '200829', '201329', '202019', '205830', '205880', '228158', '228159', '228171', '228195', '228196', '228198', '228209', '228213', '228214', '228215', '228216', '228219', '234434', '253270', '253272', '253288', '253958', '273436', '315257', '315267', '315268', '412778', '412798', '412799', '412801', '415700', '415705', '415707']
    nosy_count = 28.0
    nosy_names = ['gvanrossum', 'barry', 'jamesh', 'ncoghlan', 'pitrou', 'fijal', 'benjamin.peterson', 'jwilk', 'eric.araujo', 'alex', 'r.david.murray', 'Trundle', 'cvrebert', 'daniel.urban', 'yorik.sar', 'docs@python', 'Yury.Selivanov', 'eric.snow', 'berker.peksag', 'martin.panter', 'Jim.Jewett', 'serhiy.storchaka', 'gcbirzan', 'charettes', 'josh.r', 'V\xc3\xa1clav Dvo\xc5\x99\xc3\xa1k', 'Michael McCoy', 'iritkatriel']
    pr_nums = ['6461', '32027', '32034', '32035']
    priority = 'normal'
    resolution = 'fixed'
    stage = 'resolved'
    status = 'closed'
    superseder = None
    type = 'enhancement'
    url = 'https://bugs.python.org/issue12029'
    versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']

    @acooke
    Copy link
    Mannequin Author

    acooke mannequin commented May 8, 2011

    Hi,

    In general, registering a class with an ABC is equivalent to making it a subclass (isinstance and issubclass are patched through ABCMeta). However, this does not work for exceptions (see example below, where exception is not caught).

    This doesn't seem terribly surprising to me - I imagine that checking would slow down exception handling - but I couldn't find any documentation (and posting on c.l.p didn't turn up anything either).

    So I thought I would raise it here - perhaps there is a possible fix (my obscure use case is that I have a backtracking search; backtracking occurs when a certain exception is encountered; making that exception an ABC and allowing existing exceptions to be registered with it allows the search to work with existing code without a wrapper that catches and translates exceptions that should trigger a backtrack). Or perhaps the docs could be extended. Or perhaps I've misunderstood something...

    Cheers,
    Andrew

    Python 3.2 (r32:88445, Feb 27 2011, 13:00:05) 
    [GCC 4.5.0 20100604 [gcc-4_5-branch revision 160292]] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> from abc import ABCMeta
    >>> class RootException(Exception,metaclass=ABCMeta): pass
    ... 
    >>> class MyException(Exception): pass
    ... 
    >>> RootException.register(MyException)
    >>> try:
    ...     raise MyException
    ... except RootException:
    ...     print('caught')
    ... 
    Traceback (most recent call last):
      File "<stdin>", line 2, in <module>
    __main__.MyException

    @acooke acooke mannequin added type-bug An unexpected behavior, bug, or error interpreter-core (Objects, Python, Grammar, and Parser dirs) labels May 8, 2011
    @cvrebert
    Copy link
    Mannequin

    cvrebert mannequin commented May 24, 2011

    Scouting around the CPython codebase a bit, I speculate that the cause of this behavior is that PyErr_GivenExceptionMatches() in errors.c uses PyType_IsSubtype() [which simply walks a class's __mro__ checking for pointer equality] rather than PyObject_IsSubclass()/PyObject_IsInstance() [which are smart enough to consult __subclasscheck__()/instancecheck() if they exist].

    Of course, the more important issue here is whether this behavior is intended or not. I surmise python-dev needs to have a discussion about it?

    @cvrebert
    Copy link
    Mannequin

    cvrebert mannequin commented May 24, 2011

    Surveying the docs, the current behavior *is* /technically/ correct (in a suspiciously precise way) according to the Language Reference:
    http://docs.python.org/dev/reference/compound_stmts.html#grammar-token-try_stmt :
    "For an except clause with an expression [...] the clause matches the exception if the resulting object is 'compatible' with the exception. An object is compatible with an exception if it is the class or a base class of the exception object" (which exactly describes what PyType_IsSubtype() checks for)

    The Tutorial is by contrast much more vague:
    http://docs.python.org/dev/tutorial/errors.html#handling-exceptions :
    "if [the raised exception's] type matches the exception named after the except keyword, the except clause is executed, and then execution continues after the try statement."
    No definition of what it means for the types to "match" seems to be given.

    @jamesh
    Copy link
    Mannequin

    jamesh mannequin commented May 11, 2012

    The documentation for ABCMeta.register() says that it makes the other class a "virtual subclass". That would make the ABC a "virtual base class".

    So whether the current behaviour is correct depends on whether you consider a "virtual base" to count as a base. From the reasoning behind the introduction of ABCs, it certainly sounds like it should count.

    Also, this is a feature that works correctly in Pyton 2.7, so could trip people up who are trying to move to Python 3.

    @merwok merwok changed the title ABC registration of Exceptions Catching virtual subclasses in except clauses May 11, 2012
    @gvanrossum
    Copy link
    Member

    I agree it's a bug and should be fixed. It's too confusing that there would be two slightly different interpretations of isinstance/issubclass where the isinstance() and issubclass() would be using the extended interpretation but the except clause would use the narrow interpretation.

    The exception matching done by the except clause ought to be explainable in terms of issubclass/isinstance.

    @pitrou pitrou added type-feature A feature request or enhancement and removed type-bug An unexpected behavior, bug, or error labels May 11, 2012
    @benjaminp
    Copy link
    Contributor

    I think being able to catch exception with ABCs is esssentially useless. The originally stated "usecase" can be simply solved by putting classes into a tuple and putting that in the except clause.

    In general, the whole abc machinary causes lots of code which expects instance and subclass checks to be side-effect free to be able to execute arbitrary code, which creates messes.

    @pitrou
    Copy link
    Member

    pitrou commented May 11, 2012

    Perhaps ABCMeta could raise a UserWarning when creating an Exception subclass?

    @acooke
    Copy link
    Mannequin Author

    acooke mannequin commented May 11, 2012

    perhaps it could just work in a simple, consistent way?

    in my original report i wondered whether there was a significant performance hit. but so far the objections against fixing this seem to be (1) a lawyer could be convinced the current behaviour is consistent with the docs (2) python 3 should remain compatible with python 2 (3) abcmeta is the sucksorz.

    those don't seem like great arguments against making it just work right, to me.

    @pitrou
    Copy link
    Member

    pitrou commented May 11, 2012

    perhaps it could just work in a simple, consistent way?

    That would be best obviously. But as Benjamin explained it's quite delicate to make it work while avoiding pitfalls where code involved in exception checking may itself fail with arbitrary errors - say, enter an infinite recursion. It's also why I think it would be a bad idea to fix it in 3.2 (the bugfix branch). In 3.3 we can take riskier decisions.

    @benjaminp
    Copy link
    Contributor

    Basically, someone needs to produce a patch and we can go from there.

    @gcbirzan
    Copy link
    Mannequin

    gcbirzan mannequin commented May 11, 2012

    I posted on python dev that this would slow exception checking considerably so that is a concern. As for possible bugs, this has been working in the 2 branch for a while now, so I don't think that is the biggest issue.
    As for possible use cases, writing a wrapper around backend, each with its own exceptions and still being able to catch a 'base' exception in your code while still having the ability to catch specific exceptions, without doing awkward stuff like looking at __cause__ (let alone that you have to reraise that in 2 for code that has to run on both branches). Yes, you could patch the exceptions' bases but that is what Abc was created to avoid.

    Sorry for the mistakes and weird phrasing, posting this off my phone.

    @gcbirzan
    Copy link
    Mannequin

    gcbirzan mannequin commented May 11, 2012

    I have a patch, with tests, but no Internet on my computer so going out, will post it when I get back/my Internet comes back

    @jamesh
    Copy link
    Mannequin

    jamesh mannequin commented May 12, 2012

    Benjamin: if you are after a use case for this feature, see https://code.djangoproject.com/ticket/15901

    In Django, there are multiple database backends, each of which currently catch the adapter's DatabaseError and reraise it as Django's DatabaseError so that Django code can handle database errors in a standard way without having to care about which backend they came from. Unfortunately, this loses some information from the exception.

    My idea for solving that bug was to make Django's DatabaseError an ABC. By registering the various adapter's DatabaseErrors with the ABC, it would not be necessary to catch and reraise them in the backends while still preserving the ability to catch the generic errors in the core. This works fine in Python 2.x, but it was pointed out that it would cause compatibility problems when porting to Python 3.2.

    @jamesh jamesh mannequin added type-bug An unexpected behavior, bug, or error type-feature A feature request or enhancement and removed type-feature A feature request or enhancement type-bug An unexpected behavior, bug, or error labels May 12, 2012
    @gcbirzan
    Copy link
    Mannequin

    gcbirzan mannequin commented May 12, 2012

    As promissed the patch. It doesn't break any tests, and it passes the ones I added. I have a pybench one as well, which even though trivial, does point to the fact that there is a degradation in performance, but not sure it's worth posting here.

    @jimjjewett
    Copy link
    Mannequin

    jimjjewett mannequin commented May 24, 2012

    When does the performance hit occur?

    If it is only when an exception has been raised, and its own class is not listed by the except clause, then I personally wouldn't worry about it; tracing the MRO *could* get arbitrarily long already; it just doesn't in practice. The same should be true of virtual subclassing.

    On the other hand, if it adds another module or three to the required startup set, that might be a concern...

    @ncoghlan
    Copy link
    Contributor

    The performance hit is that such a change would potentially make it more expensive to figure out that a raised exception *doesn't* match a given "except" clause, along with the complexity of introducing execution of arbitrary code while still unwinding the stack looking for an exception handler for the original exception.

    As Benjamin noted above we already support dynamic exception handling through dynamically bound tuple lookups, so I don't think this feature is needed for the Django used case:

    >>> caught_exceptions = ()
    >>> def f(to_raise):
    ...     try:
    ...         raise to_raise
    ...     except caught_exceptions:
    ...         print("Caught the exception")
    ... 
    >>> f(Exception)
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "<stdin>", line 3, in f
    Exception
    >>> caught_exceptions = (Exception,)
    >>> f(Exception)
    Caught the exception

    I know Guido indicated above that he considers the current behaviour a bug, and I even agree that enshrining the two slightly different definitions of "issubclass" is ugly, but the complete lack of use cases without other solutions and the complex implications of unifying them mean that I think it may be worth accepting the additional complexity in the language definition instead.

    That means the question in my mind is whether we can make it less surprising/user-hostile by issuing a warning at class definition time.

    Since all exceptions are required to inherit from BaseException in order to be permitted in raise statements *or* except clauses, it seems to me that having a check in PyType ready that emits a warning when it detects the use of the virtual subclass machinery should suffice. That is, all of these should emit a warning:

      class BadExceptionABC_1(BaseException, metaclass=abc.ABCMeta): pass
      class BadExceptionABC_2(abc.ABC, BaseException): pass
      class BadExceptionABC_3(BaseException):
          def __instancecheck__(*args): return False
      class BadExceptionABC_4(BaseException):
          def __subclasscheck__(*args): return False

    We could even go further and make it a DeprecationWarning intially and upgrade to a full TypeError in a later release (although we obviously can't do that if Guido would prefer to unify the behaviour instead).

    @ncoghlan
    Copy link
    Contributor

    Actually, I take back the performance comment - Jim's right that in the normal case, the slowdown should be minimal (it's just some additional checks that certain slots aren't populated on each listed exception class), and types can already influence that by messing with the MRO.

    That just leaves the complexity argument associated with running arbitrary code at an unexpected place in the eval loop, and for that the tests in the patch would need to be strengthened with some pathological examples like:

    • __subclasscheck__ raising an exception
    • __subclasscheck__ raising and then suppressing an exception
    • __subclasscheck__ invoking the garbage collector
    • __subclasscheck__ hitting the recursion limit
    • __subclasscheck__ provoking MemoryError

    The games the current patch already has to play with the recursion limit also bother me.

    However, if an alternate approach could be found that avoids the adjustment of the recursion limit in the eval loop, that also sensibly survived the kinds of arbitrary code execution torture tests I mention above, then I'd be far more sanguine about the idea of actually resolving the discrepancy rather than formalising it as part of the general fact that the exception hierarchy isn't as flexible as most of the rest of the language.

    @pitrou
    Copy link
    Member

    pitrou commented Oct 19, 2013

    Actually, I take back the performance comment - Jim's right that in
    the normal case, the slowdown should be minimal (it's just some
    additional checks that certain slots aren't populated on each listed
    exception class), and types can already influence that by messing with
    the MRO.

    I think that the performance question can only really be answered by
    running (micro-)benchmarks here.

    @yoriksar
    Copy link
    Mannequin

    yoriksar mannequin commented Oct 21, 2013

    Can someone please point out why do we have to do that dance with recursion limit?

    I've came upon this problem as well. I had some (bad) API I had to work with. It always raised the same exception with the only difference in the message. So I thought I could do something like this:

    def message_contains(msg):
        class _MyExc(object):
            def __instancecheck__(self, exc):
                return msg in exc.args[0]
        return _MyExc

    But after I tried it in number of different ways I found out that it's not possible.

    So here's another reason to change this behavior.

    @ncoghlan
    Copy link
    Contributor

    Because context managers are closer to try/finally blocks than they are to exception handling, the class-based implementation for the contextlib.suppress API uses issubclass rather than emulating the CPython exception handling semantics: http://hg.python.org/cpython/file/09153a9a3bb9/Lib/contextlib.py#l202

    The exception checking in the unittest module is similarly based on issubclass: http://hg.python.org/cpython/file/09153a9a3bb9/Lib/unittest/case.py#l129

    I'm planning to add the catch() and ExitLabel() context managers to contextlib2 this evening, and those too will be based on issubclass().

    Perhaps as a near term thing, we should put an "implementation detail" notice somewhere in the language reference, pointing that it's the code using issubclass that is considered correct here, and CPython's exception handling that is considered out of line?

    @ncoghlan
    Copy link
    Contributor

    ncoghlan commented Nov 3, 2013

    A point on the safety/correctness front: I remembered we already run arbitrary code at roughly this point in the eval loop, as we have to invoke __iter__ to get the exceptions to check when an iterable is used in except clause.

    That means allowing the subclass check hooks to run here isn't as radical a change as I first thought.

    @MojoVampire
    Copy link
    Mannequin

    MojoVampire mannequin commented Oct 21, 2015

    Does this introduce a slowdown when the type doesn't match? That is, clearly George's example:

    try:
    {}["a"]
    except KeyError:
    pass

    won't be slowed because the fast path will get an immediate hit. But what about:

    try:
    {}["a"]
    except TypeError:
    pass
    except ValueError:
    pass
    except KeyError:
    pass

    (or with the KeyError handler higher up the call stack). The fast path speeds up the handled case, but it doesn't seem like it would help the unhandled case (where it would need to check the slow path for each unhandled exception type one at a time).

    @MojoVampire
    Copy link
    Mannequin

    MojoVampire mannequin commented Oct 21, 2015

    On rereading bpo-22540, maybe that won't be an issue (in the common case where no custom metaclasses are used for the exceptions to be caught, it looks like maybe there is no slow path to traverse?). Still worth double checking.

    @bitdancer
    Copy link
    Member

    Note from discussion on duplicate bpo-25448: when this is fixed, the try/except documentation should be updated to indicate that the except clause test is equivalent to 'issubclass', so that the handling of virtual subclasses are implied by the doc. (The current proposed patch contains no doc changes.)

    Apparently this also affects pypy.

    @vadmium
    Copy link
    Member

    vadmium commented Nov 3, 2015

    In the current (v4) patch, it looks like there is an unneeded “allow_new_exception” parameter that is always set to zero. So maybe the patch needs more careful thought.

    Also I agree it needs documentation, what’s new, “changed in version 3.6”, etc.

    @ncoghlan
    Copy link
    Contributor

    This question came up again recently over in bpo-27814, in the context of a proposal to add an "unless" parameter to contextlib.suppress(). I declined the RFE mainly on the basis of API complexity, but I also noted you can get something comparable in the current API by using virtual subclassing to say "If a subclass of these, but not of these": http://bugs.python.org/issue27814#msg273434

    So the status quo is currently giving us a slightly odd discrepancy between normal except clauses and code that emulates them via issubclass()

    @pppery pppery mannequin changed the title Catching virtual subclasses in except clauses Allow catching virtual subclasses in except clauses Aug 24, 2016
    @serhiy-storchaka
    Copy link
    Member

    Silencing exceptions like MemoryError, RecursionError or KeyboardInterrupt and returning a lying result doesn't look like a good idea to me. These exceptions can be raised in virtually any code for causes not related to executed code. MemoryError -- if other parts of the program allocated too much memory, RecursionError -- if the exception check is performed too deep in the execution stack, KeyboardInterrupt -- for obvious reasons.

    @mbmccoy
    Copy link
    Mannequin

    mbmccoy mannequin commented Apr 13, 2018

    Amalgamating the patch history here, I've updated the tests on Github (PR6160) to include tests for both the recursive case and ensure the correct error is propagated up if an exception occurs during the subclass check.

    I've also added a check to ensure that unittest's assertRaises behaves as expected. (The test currently passes on master, which is a bug if this doesn't get merged.)

    Finally, the PR updates the documentation for try/except.

    @mbmccoy
    Copy link
    Mannequin

    mbmccoy mannequin commented Apr 13, 2018

    Sorry, my last message referred to Github PR6460 / pull_request6160.

    @mbmccoy mbmccoy mannequin added 3.7 (EOL) end of life 3.8 only security fixes labels Apr 13, 2018
    @VclavDvok VclavDvok mannequin added the 3.9 only security fixes label Feb 7, 2022
    @gvanrossum
    Copy link
    Member

    Fixing the version field. Since it's a feature, this could not go into any version before 3.11.

    Maybe Irit can look through the discussion and patch and see if there's value to doing this? (Feel free to decline!)

    @gvanrossum gvanrossum added 3.11 only security fixes and removed 3.7 (EOL) end of life 3.8 only security fixes 3.9 only security fixes labels Feb 7, 2022
    @mbmccoy
    Copy link
    Mannequin

    mbmccoy mannequin commented Feb 7, 2022

    Checking my comment history here, a past me was terribly bad at linking the
    correct PR on github.This is the correct link:
    #6461

    On Mon, Feb 7, 2022 at 10:12 AM Guido van Rossum <report@bugs.python.org>
    wrote:

    Guido van Rossum <guido@python.org> added the comment:

    Fixing the version field. Since it's a feature, this could not go into any
    version before 3.11.

    Maybe Irit can look through the discussion and patch and see if there's
    value to doing this? (Feel free to decline!)

    ----------
    nosy: +iritkatriel
    versions: +Python 3.11 -Python 3.4, Python 3.5, Python 3.6, Python 3.7,
    Python 3.8, Python 3.9


    Python tracker <report@bugs.python.org>
    <https://bugs.python.org/issue12029\>


    @iritkatriel
    Copy link
    Member

    To summarise the discussion so far:

    The arguments in favour of changing exception matching to match on virtual base classes are:

    1. It is confusing that it doesn't follow issubclass semantics.
    2. Two use cases were presented as practical motivation.
      • one in msg135521, which can be solved with the pattern in msg200418
      • one in msg200829, which is typically done with
        except:
        if condition:
        handle
        raise

    The arguments against the change are

    1. safety - calling python code from the exception propagation code
    2. possible performance impact

    I am not too worried about the performance of exception handling. I am also not impressed by the use cases.

    For me it's mostly between the safety issue and the aesthetic language consistency issue.

    The code path from when a RAISE opcode executes and until control passes to an except clause, is a very sensitive one and I have a lot of sympathy to the position that we should just change the documentation to say that matching is on non-virtual base classes. It is much easier to implement this feature than to predict how it would behave in all cases.

    If we do decide to implement this, then I don't think the patch is the way we should do it. If the IsSubclass call fails, this should result in a "goto error", like when the match type is invalid:

    Py_DECREF(right);

    This means that the failure to determine whether the exception is a match is the dominant error, rather than something we print to the ether via the unraisablehook and interpret as non-match.

    @gvanrossum
    Copy link
    Member

    Thanks you. I think it's reasonable to reject the feature request and instead update the docs, so let's do that.

    @iritkatriel iritkatriel added 3.9 only security fixes 3.10 only security fixes docs Documentation in the Doc dir labels Feb 8, 2022
    @iritkatriel iritkatriel changed the title Allow catching virtual subclasses in except clauses [doc] clarify that except does not match virtual subclasses of the specified exception type Feb 8, 2022
    @iritkatriel
    Copy link
    Member

    New changeset 45833b5 by Irit Katriel in branch 'main':
    bpo-12029: [doc] clarify that except does not match virtual subclasses of the specified exception type (GH-32027)
    45833b5

    @iritkatriel
    Copy link
    Member

    New changeset 7fc1254 by Irit Katriel in branch '3.10':
    bpo-12029: [doc] clarify that except does not match virtual subclasses of the specified exception type (GH-32027) (GH-32034)
    7fc1254

    @iritkatriel
    Copy link
    Member

    New changeset 2d5e9f8 by Irit Katriel in branch '3.9':
    bpo-12029: [doc] clarify that except does not match virtual subclasses of the specified exception type (GH-32027) (GH-32035)
    2d5e9f8

    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    3.9 only security fixes 3.10 only security fixes 3.11 only security fixes docs Documentation in the Doc dir interpreter-core (Objects, Python, Grammar, and Parser dirs) type-feature A feature request or enhancement
    Projects
    None yet
    Development

    No branches or pull requests

    10 participants