# HG changeset patch # User Peter Koppatz # Date 1390075522 -3600 # Node ID 3b768d0f09ef1df32d249815e7278e692869e680 # Parent ced4e431cdd99cbbdfaf3c8b07a862a79ed21391 code revue diff -r ced4e431cdd9 -r 3b768d0f09ef pymove3d.py --- a/pymove3d.py Sat Jan 18 20:54:15 2014 +0100 +++ b/pymove3d.py Sat Jan 18 21:05:22 2014 +0100 @@ -21,7 +21,6 @@ babel = Babel(app) def get_topmenue(): - topmenue = [('/competition', _('Competition')), ('/task', _('Task')), ('/submission', _('Submission')), diff -r ced4e431cdd9 -r 3b768d0f09ef sayings.py --- a/sayings.py Sat Jan 18 20:54:15 2014 +0100 +++ b/sayings.py Sat Jan 18 21:05:22 2014 +0100 @@ -2,27 +2,27 @@ def get_saying(): sayings = [('The Zen of Python, by Tim Peters', '__Tim Peters, The Zen of Python'), - ("Beautiful is better than ugly.", '__Tim Peters, The Zen of Python'), - ("Explicit is better than implicit.", '__Tim Peters, The Zen of Python'), - ("Simple is better than complex.", '__Tim Peters, The Zen of Python'), - ("Complex is better than complicated.", '__Tim Peters, The Zen of Python'), - ("Flat is better than nested.", '__Tim Peters, The Zen of Python'), - ("Sparse is better than dense.", '__Tim Peters, The Zen of Python'), - ("Readability counts.", '__Tim Peters, The Zen of Python'), - ("Special cases aren't special enough to break the rules.", '__Tim Peters, The Zen of Python'), - ("Although practicality beats purity.", '__Tim Peters, The Zen of Python'), - ("Errors should never pass silently.", '__Tim Peters, The Zen of Python'), - ("Unless explicitly silenced.", '__Tim Peters, The Zen of Python'), - ("In the face of ambiguity, refuse the temptation to guess.", '__Tim Peters, The Zen of Python'), - ("Although that way may not be obvious at first unless you're Dutch.", '__Tim Peters, The Zen of Python'), - ("Now is better than never.", '__Tim Peters, The Zen of Python'), - ("Although never is often better than *right* now.", '__Tim Peters, The Zen of Python'), - ("If the implementation is hard to explain, it's a bad idea.", '__Tim Peters, The Zen of Python'), - ("If the implementation is easy to explain, it may be a good idea.", '__Tim Peters, The Zen of Python'), - ("Namespaces are one honking great idea -- let's do more of those!", '__Tim Peters, The Zen of Python'), - ] - + ("Beautiful is better than ugly.", '__Tim Peters, The Zen of Python'), + ("Explicit is better than implicit.", '__Tim Peters, The Zen of Python'), + ("Simple is better than complex.", '__Tim Peters, The Zen of Python'), + ("Complex is better than complicated.", '__Tim Peters, The Zen of Python'), + ("Flat is better than nested.", '__Tim Peters, The Zen of Python'), + ("Sparse is better than dense.", '__Tim Peters, The Zen of Python'), + ("Readability counts.", '__Tim Peters, The Zen of Python'), + ("Special cases aren't special enough to break the rules.", '__Tim Peters, The Zen of Python'), + ("Although practicality beats purity.", '__Tim Peters, The Zen of Python'), + ("Errors should never pass silently.", '__Tim Peters, The Zen of Python'), + ("Unless explicitly silenced.", '__Tim Peters, The Zen of Python'), + ("In the face of ambiguity, refuse the temptation to guess.", '__Tim Peters, The Zen of Python'), + ("Although that way may not be obvious at first unless you're Dutch.", '__Tim Peters, The Zen of Python'), + ("Now is better than never.", '__Tim Peters, The Zen of Python'), + ("Although never is often better than *right* now.", '__Tim Peters, The Zen of Python'), + ("If the implementation is hard to explain, it's a bad idea.", '__Tim Peters, The Zen of Python'), + ("If the implementation is easy to explain, it may be a good idea.", '__Tim Peters, The Zen of Python'), + ("Namespaces are one honking great idea -- let's do more of those!", '__Tim Peters, The Zen of Python'), + ] + shuffle(sayings) - + saying, author = sayings[0] return saying, author