search for: 9663fb4

Displaying 3 results from an estimated 3 matches for "9663fb4".

Did you mean: 96616b4
2016 Apr 01
1
[PATCH] python: Fix bug in code generator
...s the only one using FChar fields. Yet it prevents any other struct from using such fields. Signed-off-by: Matteo Cafasso <noxdafox at gmail.com> --- generator/python.ml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/generator/python.ml b/generator/python.ml index 9663fb4..9d9dc4a 100644 --- a/generator/python.ml +++ b/generator/python.ml @@ -225,10 +225,12 @@ put_table (char * const * const argv) | name, FChar -> pr "#ifdef HAVE_PYSTRING_ASSTRING\n"; pr " PyDict_SetItemString (dict, \"%s\",\n" nam...
2016 Apr 01
0
[PATCH] python: Fix bug in code generator
...s the only one using FChar fields. Yet it prevents any other struct from using such fields. Signed-off-by: Matteo Cafasso <noxdafox at gmail.com> --- generator/python.ml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/generator/python.ml b/generator/python.ml index 9663fb4..9d9dc4a 100644 --- a/generator/python.ml +++ b/generator/python.ml @@ -225,10 +225,12 @@ put_table (char * const * const argv) | name, FChar -> pr "#ifdef HAVE_PYSTRING_ASSTRING\n"; pr " PyDict_SetItemString (dict, \"%s\",\n" nam...
2016 Feb 26
1
[PATCH] doc: add info on per-function needed feature
...ion depends on the feature C<%s>. See also +C<$g-E<gt>feature-available>.\n\n" opt + ); (match deprecation_notice f with | None -> () | Some txt -> pr "%s\n\n" txt diff --git a/generator/python.ml b/generator/python.ml index c618bf0..9663fb4 100644 --- a/generator/python.ml +++ b/generator/python.ml @@ -817,6 +817,11 @@ class GuestFS(object): match deprecation_notice f with | None -> doc | Some txt -> doc ^ "\n\n" ^ txt in + let doc = + match f.optional with + |...