00001 # This file is Copyright 2009 Dean Hall. 00002 # 00003 # This file is part of the Python-on-a-Chip program. 00004 # Python-on-a-Chip is free software: you can redistribute it and/or modify 00005 # it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1. 00006 # 00007 # Python-on-a-Chip is distributed in the hope that it will be useful, 00008 # but WITHOUT ANY WARRANTY; without even the implied warranty of 00009 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00010 # A copy of the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1 00011 # is seen in the file COPYING up one directory from this. 00012 00013 # 00014 # System Test 234 00015 # Fix list comparisons 00016 # 00017 00018 assert not [] == [1,] 00019 assert not [] == [1,2,3] 00020 assert not [1,] == [] 00021 assert not [1,2,3] == [] 00022 00023 assert [] != [1,] 00024 assert [] != [1,2,3] 00025 assert [1,] != [] 00026 assert [1,2,3] != [] 00027 00028 assert [] == [] 00029 assert [0,1,2] == [0,1,2] 00030 assert [0,1,2] == [0,1,2][:] 00031 assert [0,1,2] == range(3)