Sylvain
Sylvain
Probably worth re-reading http://stupidpythonideas.blogspot.fr/2015/05/if-you-dont-like-exceptions-you-dont.html ( and http://stupidpythonideas.blogspot.fr/2015/12/how-lookup-works.html ) when I have more time.
https://github.com/mdipierro/autoinstaller : interesting idea. I'll try to understand the code and see if I can reuse ideas out of it. Also, it could be nice to make things usable with...
https://github.com/bndr/pipreqs/blob/master/pipreqs/pipreqs.py
Principle of Least Astonishment and Python : http://lucumr.pocoo.org/2011/7/9/python-and-pola/ . A few suggestions might make sense.
Confusing/interesting error messages here : https://www.reddit.com/r/Python/comments/4ivd2k/what_is_your_favorite_python_error_message/
https://github.com/asweigart/pydidyoumean
I've just discovered the change about literal octals in Python 3. Might be interesting to have a suggestion.
https://twitter.com/raymondh/status/772957699478663169 "#python tip: What Python says: "TypeError: 'method' object is not subscriptable" What it means: "Use parentheses instead of square brackets"" https://twitter.com/raymondh/status/773224135409360896 "What #Python says: TypeError: 'Tk' object cannot be...
http://stackoverflow.com/questions/38147923/mixing-datetime-strptime-arguments/38215307 pretty common error: mixing argument of `strptime`. https://twitter.com/brandon_rhodes/status/781234730091941888
SyntaxError: `if a = b:` and `if a == b`