15
0

Accepting request 1240742 from home:glaubitz:branches:devel:languages:python

- Update to 0.24.0
  * Additions:
    - Language.copy()
    - Language.node_kind_is_supertype(id)
    - Language.__copy__()
    - LogType (enum)
    - Node.child_with_descendant(descendant)
    - Node.field_name_for_named_child(descendant)
    - Parser.print_dot_graphs(file)
    - Parser.logger (getter + setter)
    - Tree.copy()
    - Tree.print_dot_graph(file)
    - Tree.__copy__()
  * Deprecations:
    - Language(ptr: int)
    - Node.child_containing_descendant(descendant):
      use Node.child_with_descendant(descendant)

OBS-URL: https://build.opensuse.org/request/show/1240742
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tree-sitter?expand=0&rev=4
This commit is contained in:
2025-01-28 10:26:56 +00:00
committed by Git OBS Bridge
parent 1b37710f08
commit 9938c8a2ed
4 changed files with 26 additions and 5 deletions

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Tue Jan 28 09:15:06 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.24.0
* Additions:
- Language.copy()
- Language.node_kind_is_supertype(id)
- Language.__copy__()
- LogType (enum)
- Node.child_with_descendant(descendant)
- Node.field_name_for_named_child(descendant)
- Parser.print_dot_graphs(file)
- Parser.logger (getter + setter)
- Tree.copy()
- Tree.print_dot_graph(file)
- Tree.__copy__()
* Deprecations:
- Language(ptr: int)
- Node.child_containing_descendant(descendant):
use Node.child_with_descendant(descendant)
-------------------------------------------------------------------
Tue Dec 3 13:45:51 UTC 2024 - Matej Cepl <mcepl@cepl.eu>