2018年12月30日日曜日

Kivyプログラミング ―Pythonで作るマルチタッチアプリ― (実践Pythonライブラリー) (原口 和也(著)、久保 幹雄(監修)、朝倉書店)に誤植があったみたいなので原口 和也さんに報告してみた。

Kivyプログラミング (2018年6月10日 初版第1刷)について。

p.43 ~ 45、3(イベントとプロパティ)、3.3(タッチイベント)、のコード3.2とその出力について。

コード

print('You pressed the window.')print('You pressed the widget ' + str(self.no) + '.')

出力

You touched the window.
You touched the widget 1.
…

ではなく、

コード

print('You pressed the window.')print('You pressed the widget ' + str(self.no) + '.')

出力

You pressed the window.
You pressed the widget 1.
…

あるいは、

コード

print('You touched the window.')print('You touched the widget ' + str(self.no) + '.')

出力

You touched the window.
You touched the widget 1.
…

ではないかと。(3.3(タッチイベント)だから後者の方が適してるかもです。)

サポートページに訂正が無かったので。

2018/12/18: 追記。

年末なのに素早いサポート、嬉しさと驚き。

0 コメント:

コメントを投稿