You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# this sorts by the third (0, 1, 2) character of# the default expression ``line`` (with ``unicode``)
./pyline.py -v -s 2
# these all sort by the third word (0, 1, 2) of# the expression ``words`` (as ``unicode``)
./pyline.py -v -s 2 w
./pyline.py -v -s 2 'w'
./pyline.py -v -s 2 words
./pyline.py -v -s 2 'words'# this sorts by the third word (0, 1, 2) as an integer# and raises ValueError if the cast to integer raises an exception
./pyline.py -v -s 2 'words' --cols='2::int'
./pyline.py -v -s 2 'words' --cols='2::xsd:integer'
westurner
changed the title
BUG: sorting appears to be broken
BUG,DOC: sorting appears to be broken
Jan 27, 2016
Test Cases:
Solutions:
A. Fix sorting
B. Remove sorting functionality
Meanwhile:
The text was updated successfully, but these errors were encountered: