configtable.py:
- Iterating over `bytes` instances directly yields integers, no need to
call map(ord, ...)
- Use explicit flooring integer division
l3.py:
- Use numbers.Integral instead of (int, long) to check if an input is
an integral number
- `file` objects in Python3 do not have next methods, but still
implement an iterator which can be advanced by next() function
- Use explicit flooring integer division
- __nonzero__ class attribute is called __bool__ in Python3
solomsgclass.py:
- Use numbers.Integral instead of (int, long) to check if an input is
an integral number
- Explicitely define relational operators for ModulusValue objects,
i.e. implement __lt__ and __eq__. __cmp__ is deprecated
git-svn-id: svn+ssh://asterix/home/subversion/stephan/solo/eda/python@6685 bc5caf13-1734-44f8-af43-603852e9ee25