search for: decl_string

Displaying 7 results from an estimated 7 matches for "decl_string".

2020 Jul 06
2
[PATCH] python: Add type hints
...quot;" + in + let type_hint_of_optargt optarg = + match optarg with + | OBool _ -> "bool" + | OInt _ | OInt64 _ -> "int" + | OString _ -> "str" + | OStringList _ -> "List[str]" + in let decl_string = "self" ^ - map_join (fun arg ->sprintf ", %s" (name_of_argt arg)) + map_join (fun arg ->sprintf ", %s%s" (name_of_argt arg) (type_hint_of_argt arg)) args ^ - map_join (fun optarg -> sprintf ", %s=None" (name...
2020 Jul 06
0
Re: [PATCH] python: Add type hints
...pe_hint_of_optargt optarg = > + match optarg with > + | OBool _ -> "bool" > + | OInt _ | OInt64 _ -> "int" > + | OString _ -> "str" > + | OStringList _ -> "List[str]" > + in > let decl_string = > "self" ^ > - map_join (fun arg ->sprintf ", %s" (name_of_argt arg)) > + map_join (fun arg ->sprintf ", %s%s" (name_of_argt arg) (type_hint_of_argt arg)) > args ^ > - map_join (fun optarg -> sprintf &q...
2020 Jul 07
1
Re: [PATCH] python: Add type hints
...t; + match optarg with > > + | OBool _ -> "bool" > > + | OInt _ | OInt64 _ -> "int" > > + | OString _ -> "str" > > + | OStringList _ -> "List[str]" > > + in > > let decl_string = > > "self" ^ > > - map_join (fun arg ->sprintf ", %s" (name_of_argt arg)) > > + map_join (fun arg ->sprintf ", %s%s" (name_of_argt arg) (type_hint_of_argt arg)) > > args ^ > > - map_join (fu...
2020 Jan 10
8
[PATCH 0/7] Various Python pycodestyle fixes
Fixes the majority of the pycodestyle issues in the Python bindings, leaving only an overly length line in setup.py. Add a simple optional pycodestyle-based test to avoid regressions in the future. Pino Toscano (7): python: PEP 8: adapt empty lines python: PEP 8: adapt whitespaces in lines python: tests: catch specific exception python: tests: improve variable naming python: tests:
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:
2016 May 04
9
[PATCH 0/8] python: PEP 8 fixes
Hi, this series cleans up the Python sources, either static or generated, including also tests, to make them PEP 8 compliant; see https://www.python.org/dev/peps/pep-0008/ and tools like pep8. Almost all the issues reported by pep8 are fixed, reducing the issues from 3818 to 7. The changes should have no effect on the actual code, while it will help Python users with consistency with other
2016 Dec 08
4
[PATCH] generator: Share Common_utils code.
...EVENT_%s = 0x%x\n" (String.uppercase name) bitmask + pr "EVENT_%s = 0x%x\n" (String.uppercase_ascii name) bitmask ) events; pr "EVENT_ALL = 0x%x\n" all_events_bitmask; pr "\n"; @@ -855,7 +856,7 @@ class GuestFS(object): f.name (indent_python decl_string (9 + len_name) 78); if is_documented f then ( - let doc = replace_str f.longdesc "C<guestfs_" "C<g." in + let doc = String.replace f.longdesc "C<guestfs_" "C<g." in let doc = match ret with | R...