svn+ssh://bugman@.../svn/relax/trunk
........
r24390 | bugman | 2014-07-02 09:37:42 +0200 (Wed, 02 Jul 2014) | 17 lines
General Python 3 fixes via the 2to3 script.
The command used was:
2to3 -j 4 -w \
-f buffer \
-f idioms \
-f set_literal \
-f ws_comma \
-x except \
-x import \
-x imports \
-x long \
-x numliterals \
-x xrange \
.
........
r24391 | bugman | 2014-07-02 09:42:01 +0200 (Wed, 02 Jul 2014) | 7 lines
Removed the lib.compat.sorted() function which was providing Python2.3 compatibility.
For a while now, relax has been unable to run on Python versions less than 2.5. Therefore there is
no use for having this replacement function for Python <= 2.3 which was being placed into the
builtins module.
........