search for: f0d6b5d96

Displaying 6 results from an estimated 6 matches for "f0d6b5d96".

2020 Apr 20
2
[PATCH] python: Fix UnicodeError in inspect_list_applications2() (RHBZ#1684004)
...xorg-x11-xauth yast2-mouse This is a surgical fix for inspect_list_applications2()'s description field. Signed-off-by: Sam Eiderman <sameid@google.com> --- generator/python.ml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/generator/python.ml b/generator/python.ml index f0d6b5d96..7394a943a 100644 --- a/generator/python.ml +++ b/generator/python.ml @@ -170,6 +170,14 @@ and generate_python_structs () = function | name, FString -> pr " value = guestfs_int_py_fromstring (%s->%s);\n" typ name; + (match typ, name with +...
2020 Jul 06
2
[PATCH] python: Add type hints
...2 is dropped we can use the new python3 syntax for type hints. Signed-off-by: Sam Eiderman <sameid@google.com> --- generator/python.ml | 39 +++++++++++++++++++++++++++++++++++---- 1 file changed, 35 insertions(+), 4 deletions(-) diff --git a/generator/python.ml b/generator/python.ml index f0d6b5d96..3640ee39a 100644 --- a/generator/python.ml +++ b/generator/python.ml @@ -685,6 +685,7 @@ logvols = g.lvs() import os import sys import libguestfsmod +from typing import Union, List, Tuple, Optional "; @@ -802,14 +803,44 @@ class GuestFS(object): fun f -> let ret, args,...
2020 Apr 20
0
[PATCH] python: Fix UnicodeError in inspect_list_applications2() (RHBZ#1684004)
...xorg-x11-xauth yast2-mouse This is a surgical fix for inspect_list_applications2()'s description field. Signed-off-by: Sam Eiderman <sameid@google.com> --- generator/python.ml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/generator/python.ml b/generator/python.ml index f0d6b5d96..7394a943a 100644 --- a/generator/python.ml +++ b/generator/python.ml @@ -170,6 +170,14 @@ and generate_python_structs () = function | name, FString -> pr " value = guestfs_int_py_fromstring (%s->%s);\n" typ name; + (match typ, name with +...
2020 Apr 20
0
Re: [PATCH] python: Fix UnicodeError in inspect_list_applications2() (RHBZ#1684004)
...ical fix for inspect_list_applications2()'s description > field. > > Signed-off-by: Sam Eiderman <sameid@google.com> > --- > generator/python.ml | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/generator/python.ml b/generator/python.ml > index f0d6b5d96..7394a943a 100644 > --- a/generator/python.ml > +++ b/generator/python.ml > @@ -170,6 +170,14 @@ and generate_python_structs () = > function > | name, FString -> > pr " value = guestfs_int_py_fromstring (%s->%s);\n" typ name; > +...
2020 Jul 06
0
Re: [PATCH] python: Add type hints
...work for 3.5 still. Rich. > Signed-off-by: Sam Eiderman <sameid@google.com> > --- > generator/python.ml | 39 +++++++++++++++++++++++++++++++++++---- > 1 file changed, 35 insertions(+), 4 deletions(-) > > diff --git a/generator/python.ml b/generator/python.ml > index f0d6b5d96..3640ee39a 100644 > --- a/generator/python.ml > +++ b/generator/python.ml > @@ -685,6 +685,7 @@ logvols = g.lvs() > import os > import sys > import libguestfsmod > +from typing import Union, List, Tuple, Optional > > "; > > @@ -802,14 +803,44 @@ class G...
2020 Jul 07
1
Re: [PATCH] python: Add type hints
...> Signed-off-by: Sam Eiderman <sameid@google.com> > > --- > > generator/python.ml | 39 +++++++++++++++++++++++++++++++++++---- > > 1 file changed, 35 insertions(+), 4 deletions(-) > > > > diff --git a/generator/python.ml b/generator/python.ml > > index f0d6b5d96..3640ee39a 100644 > > --- a/generator/python.ml > > +++ b/generator/python.ml > > @@ -685,6 +685,7 @@ logvols = g.lvs() > > import os > > import sys > > import libguestfsmod > > +from typing import Union, List, Tuple, Optional > > > > "...