]> git.madduck.net Git - etc/vim.git/blobdiff - blib2to3/pytree.pyi

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add support for pyi files (#210)
[etc/vim.git] / blib2to3 / pytree.pyi
index eb7320b9d6c4b34960c95fe04cd0f7c58be8936b..650acaa2326711154032bc38906b01c59328c9a4 100644 (file)
@@ -56,6 +56,9 @@ class Leaf(Base):
     value: Text
     fixers_applied: List[Any]
     def __init__(self, type: int, value: Text, context: Optional[_Context] = ..., prefix: Optional[Text] = ..., fixers_applied: List[Any] = ...) -> None: ...
+    # bolted on attributes by Black
+    bracket_depth: int
+    opening_bracket: Leaf
 
 def convert(gr: Grammar, raw_node: _RawNode) -> _NL: ...