Displaying 7 results from an estimated 7 matches for "map_join".
2020 Jul 06
2
[PATCH] python: Add type hints
...gt 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_of_optargt optarg))
- optargs in
+...
2020 Jul 06
0
Re: [PATCH] python: Add type hints
...gt; + | 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_of_optargt optarg))
> -...
2020 Jul 07
1
Re: [PATCH] python: Add type hints
...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_of_optargt optarg...
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
2019 Apr 23
8
[PATCH 0/7] Make deprecation warnings more prominent
Since there are deprecated APIs, make sure that users notice they are
deprecated in more prominent ways than done so far:
- using deprecated C functions now warns by default
- it is possible to use the C library making sure no deprecated function
is ever used
- Python/Ruby/Perl scripts now get warning messages (configured
according to their own systems) when deprecated functions are used
The