search for: 0c8cff13b

Displaying 3 results from an estimated 3 matches for "0c8cff13b".

2019 Dec 20
0
[common/libguestfs PATCH 2/2] build: use split stringlist functions from common/utils
...- cleanups.h \ - guestfs-internal-all.h \ - guestfs-utils.h \ - ignore-value.h \ + guestfs-stringlists-utils.h \ stamp-extra-files \ - utils.c + stringlists-utils.c clean-local: rm -rf build dist __pycache__ t/__pycache__ diff --git a/python/setup.py.in b/python/setup.py.in index 079920d0e..0c8cff13b 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -62,7 +62,7 @@ This package contains the Python bindings for libguestfs. 'handle.c', 'module.c', 'structs.c', - 'utils.c'], + '...
2020 Jan 10
9
[PATCH v2 0/8] Various Python pycodestyle fixes
Fixes all the pycodestyle issues in the Python bindings, overring one that does not make sense to change (and it's in setup.py, so almost irrelevant). Add a simple optional pycodestyle-based test to avoid regressions in the future. Pino Toscano (8): python: PEP 8: adapt empty lines python: PEP 8: adapt whitespaces in lines python: tests: catch specific exception python: tests:
2019 Dec 20
3
[common/libguestfs PATCH 0/2] Fix OCaml/Python linking
Make sure they can build also in no as-neede setups. Pino Toscano (1): utils: split string list functions in own file build: use split stringlist functions from common/utils utils/Makefile.am | 2 + utils/guestfs-stringlists-utils.h | 30 +++++ utils/guestfs-utils.h | 7 +- utils/stringlists-utils.c | 197 ++++++++++++++++++++++++++++++ utils/utils.c