Tim Cooke wrote: Are you sure you're always returning a value from ask_user()?
Carter Sande wrote:
Also, keep in mind that in Python, it doesn't really matter what type a variable is so long as it has the methods and properties you need. (This is sometimes called "duck typing".) If you write x.endswith(".com") in your Python program, x could be a string, but it could also be some other class that has a method named endswith. So another strategy for dealing with types in Python is to not worry too much about them.
Travis Risner wrote:
So, although most library functions returns a specific type which is documented, there are times that a function may be deliberately ambiguous for a reason. However, no one is suggesting that the documentation is perfect so please share which function is puzzling you. Perhaps it can be explained better here -- and a request can be submitted to have the documentation improved.
Andreas Wittig wrote:As far as I understand your use case, KMS is not the solution to your problem. KMS is focusing on data at rest. So I guess you need to search for an alternative here.
Winston Gutkowski wrote:
I'm also not exactly sure what your primary concern is here - security or throughput?
Winston