Good day all,
I am learning Python and came up to decorators.
The question is: Why does function FoodList return value None?
The code in attachment.
Thank you,
Aigars
testingVarLogger.py
Description: application/unknown-application-x-python
--
http://mail.python.org/mailman/listinfo/python-list
Good day,
I want MyClass to perform some tests and if them fail, I do not want
instance to be created.
But in code I wrote instance is created and also has parameters, that
it should not have in case of tests failure.
Is there a way to perform tests in MyClass.__init__ and set instance
to None
I do not want code outside my class to perform tests and decide to
create instance or not.
Fredrik Lundh's advice to rise exception works perfectly.
Thanks to all,
Aigars
Quoting Mohamed Yousef : Ù‹What about no Constructor , and a
custom instancing function that can
return either None or the ins