patch

2009-01-06 Thread Pavel Kosina
sorry, pls forget ... -- geon Pavel Kosina -- http://mail.python.org/mailman/listinfo/python-list

patch

2009-01-03 Thread Pavel Kosina
h.c, line 354 This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. Patchuje někdo tady pod Windows? Díky -- geon Pavel Kosina -- http://mail.python.org/mailman/listinfo/python-list

Re: idle 3.0 unicode

2009-01-01 Thread Pavel Kosina
小楼 napsal(a), dne 1.1.2009 10:32: #coding="utf-8" #中国 print('a') saved in utf8 alt+x,destroyed IDLE... me too,why? Are you sure? Run (F5) with print('a') is OK here. Maybe you have redefined key bindings in IDLE ... -- geon Pavel Kosina -- http://mail.pyth

idle 3.0 unicode

2009-01-01 Thread Pavel Kosina
IDLE window without any error message. -- geon Pavel Kosina -- http://mail.python.org/mailman/listinfo/python-list

Re: tkinter 3.0 multiple keyboard events together

2008-12-28 Thread Pavel Kosina
janislaw napsal(a): Um, I could be only guessing what are you meant to do, unless you describe your problem in more detailed way. I.e. describe the desired behaviour, show code which you have, and describe the current behaviour. well, I am working on a tutorial for youngster (thats why i ne

Re: tkinter 3.0 multiple keyboard events together

2008-12-27 Thread Pavel Kosina
janislaw napsal(a): Use google to find the appropriate site, or browse this site, there are plenty of examples. You may want to examine the code I wrote to you to catch the idea: #-- import Tkinter import pprint tk = Tkinter.Tk() f = Tkinter.Frame(tk, width=100, height=100) m

Re: tkinter 3.0 multiple keyboard events together

2008-12-26 Thread Pavel Kosina
janislaw napsal(a): On 26 Gru, 05:52, Pavel Kosina wrote: Is it possible to catch in an event more that one key from keyboard? In my code, I can handle always the only one, the first I press, the others are omitted. Say, I press both "4" and "8" and only "4&quo

tkinter 3.0 multiple keyboard events together

2008-12-25 Thread Pavel Kosina
Is it possible to catch in an event more that one key from keyboard? In my code, I can handle always the only one, the first I press, the others are omitted. Say, I press both "4" and "8" and only "4" is catched. def movePlayer(event): print (event.keysym) Th

tkinter, livewires: slow moving on Canvas

2006-08-14 Thread Pavel Kosina
-- geon Pavel Kosina from livewires import * from random import randint def makePlayer(): global player_body, player_x, player_y player_x=randint(0,640) player_y=randint(0,480) player_body=circle(player_x, player_y,5, filled=1) def movePlayer(): global finito, player_body