Popular recipes by Hiro http://code.activestate.com/recipes/users/4184239/2014-01-24T15:27:25-08:00ActiveState Code RecipesFixed Lengh List (Python)
2014-01-24T15:27:25-08:00Hirohttp://code.activestate.com/recipes/users/4184239/http://code.activestate.com/recipes/578813-fixed-lengh-list/
<p style="color: grey">
Python
recipe 578813
by <a href="/recipes/users/4184239/">Hiro</a>
(<a href="/recipes/tags/length/">length</a>, <a href="/recipes/tags/list/">list</a>).
Revision 2.
</p>
<p>In some applications, it's advantageous to be able to define a fixed length list.</p>
<p>The class provides all features as python internal type: list</p>
<p>The main focus of <strong>fixed length</strong> list is only keep certain number of items. "overflow" items will be discarded.</p>
xdiff in python (Python)
2012-11-12T20:59:54-08:00Hirohttp://code.activestate.com/recipes/users/4184239/http://code.activestate.com/recipes/578324-xdiff-in-python/
<p style="color: grey">
Python
recipe 578324
by <a href="/recipes/users/4184239/">Hiro</a>
(<a href="/recipes/tags/file/">file</a>, <a href="/recipes/tags/process/">process</a>).
Revision 2.
</p>
<p>xdiff.py compares and output difference of file1 and file2. it finds out the lines that are unique in file1 and files2, the finding is written to file3 and file4 respectively.</p>