--- a/plugins/lru.py +++ b/plugins/lru.py @@ -1,3 +1,10 @@ + +''' +This software is licensed under the GPL (GNU General Public License) version 2 +as it appears here: http://www.gnu.org/copyleft/gpl.html +It is also included with this archive as `gpl.txt <gpl.txt>`_. +''' + class Node(object): __slots__ = 'prev', 'me', 'next'