Podcast
Questions and Answers
What is the advantage of setting dunder all in each individual module?
What is the advantage of setting dunder all in each individual module?
Why is it a bad practice to do an import star from the common.validators module?
Why is it a bad practice to do an import star from the common.validators module?
Why is the dunder all method used in the validators module code?
Why is the dunder all method used in the validators module code?
What is the consequence of a polluted namespace?
What is the consequence of a polluted namespace?
Signup and view all the answers
What is the problem with having numeric and is_numeric in the namespace?
What is the problem with having numeric and is_numeric in the namespace?
Signup and view all the answers
Why is it recommended to avoid importing everything using the star import?
Why is it recommended to avoid importing everything using the star import?
Signup and view all the answers
What is the purpose of the all method in the validators module?
What is the purpose of the all method in the validators module?
Signup and view all the answers