Anders and Briegel in Python
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
231B

  1. from abp import qi
  2. def test_dumbness():
  3. a = qi.CircuitModel(1)
  4. b = qi.CircuitModel(1)
  5. assert a == b
  6. a.act_local_rotation(0, qi.px)
  7. assert not (a == b)
  8. a.act_local_rotation(0, qi.px)
  9. assert (a == b)