Attention is currently required from: dexter, fixeria, laforge.
3 comments:
File pySim/esim/saip/personalization.py:
Patch Set #6, Line 117: If self.value is None, first call self.validate() to generate a sanitized self.value from self.input_value.
I see how this creates a misunderstanding: I always write API docs in the "imperative mood", which i […]
Done
File pySim/esim/saip/personalization.py:
shouldn't that be a double-equals (also below)? to me it looks like an assignment rather than a com […]
wow, a log string in a printf in example code in an api comment ... =)
but ok
Patch Set #7, Line 100: allow_types = (str, int, )
Does the comma with empty element imply that None is a vaid input value? In that case, I'd prefer a […]
no, the trailing comma does not add a third item.
It's just that i like trailing commas for easier editing and use them where i can.
Also I have this behavior from:
a single-entry list *does* work as my_list = [foo], but tuple braces don't.
This makes a single-entry tuple:
my_tuple = (23, )
another_tuple = tuple((23, ))
This not:
not_my_tuple = (23) # an int
also_not = tuple(23) # TypeError
To view, visit change 39742. To unsubscribe, or for help writing mail filters, visit settings.