diff options
author | David Robillard <d@drobilla.net> | 2020-02-17 13:43:39 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-02-17 13:43:39 +0100 |
commit | 8014748967fb64e539cfca9069b563e6ead3bc7f (patch) | |
tree | e58e1c03548146bc3b18221c383b23e456f90f8e | |
parent | 941a6ffaebeeb98bf570bdb092da253d140b4911 (diff) | |
download | lilv-8014748967fb64e539cfca9069b563e6ead3bc7f.tar.gz lilv-8014748967fb64e539cfca9069b563e6ead3bc7f.tar.bz2 lilv-8014748967fb64e539cfca9069b563e6ead3bc7f.zip |
Update Python binding boilerplate
-rw-r--r-- | bindings/python/lilv.py | 6 | ||||
-rw-r--r-- | bindings/test/python/test_api.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bindings/python/lilv.py b/bindings/python/lilv.py index 595ec00..8e30791 100644 --- a/bindings/python/lilv.py +++ b/bindings/python/lilv.py @@ -1,9 +1,9 @@ """Lilv Python interface""" __author__ = "David Robillard" -__copyright__ = "Copyright 2016-2019 David Robillard" +__copyright__ = "Copyright 2016-2020 David Robillard" __license__ = "ISC" -__version__ = "0.24.5" +__version__ = "0.24.7" __maintainer__ = "David Robillard" __email__ = "d@drobilla.net" __status__ = "Production" @@ -816,7 +816,7 @@ class Node(Structure): Returns None if value is not a file URI.""" c_str = c.node_get_path(self.node, hostname) string = cast(c_str, c_char_p).value.decode("utf-8") - if sys.platform != 'win32': # TODO: Memory comes from libserd + if sys.platform != "win32": # TODO: Memory comes from libserd c.free(c_str) return string diff --git a/bindings/test/python/test_api.py b/bindings/test/python/test_api.py index 919fee6..652ccd8 100644 --- a/bindings/test/python/test_api.py +++ b/bindings/test/python/test_api.py @@ -1,4 +1,4 @@ -# Copyright 2016-2019 David Robillard <d@drobilla.net> +# Copyright 2016-2020 David Robillard <d@drobilla.net> # Copyright 2013 Kaspar Emanuel <kaspar.emanuel@gmail.com> # # Permission to use, copy, modify, and/or distribute this software for any |