Comments on: Qu’est-ce qu’un callback ? http://sametmax.com/quest-ce-quun-callback/ Du code, du cul Sat, 07 Nov 2015 11:08:18 +0000 hourly 1 http://wordpress.org/?v=4.1 By: Sam http://sametmax.com/quest-ce-quun-callback/#comment-157650 Fri, 13 Mar 2015 10:00:19 +0000 http://sametmax.com/?p=1831#comment-157650 Si tu regarde une ligne plus haut, tu verras qu’on définit la fonction crie_ta_joie avec “def crie_ta_joie”. Mais ici, on n’appelle pas la fonction (on ne fait pas crie_ta_joie(), y a pas de parenthèses), on passe crie_ta_joie en tant qu’argument ‘command’. Cette fonction sera appelée plus tard, si l’utilisateur clic sur le bouton, c’est donc bien un callback.

]]>
By: Ludo http://sametmax.com/quest-ce-quun-callback/#comment-157635 Thu, 12 Mar 2015 19:35:03 +0000 http://sametmax.com/?p=1831#comment-157635 Euh je vois pas le callback dans le bout de tcl :

b = Button(root, text=”Go”, command=crie_ta_joie) # création d’un bouton

pour moi il s’agit juste d’un appel de function classique, non ? ou alors mais souvenir de Tcl/Tk sont trop lointain ?

]]>
By: Sam http://sametmax.com/quest-ce-quun-callback/#comment-18658 Sat, 18 Jan 2014 14:58:37 +0000 http://sametmax.com/?p=1831#comment-18658 Bien vu ! C’est corrigé.

]]>
By: moato http://sametmax.com/quest-ce-quun-callback/#comment-18651 Fri, 17 Jan 2014 22:51:04 +0000 http://sametmax.com/?p=1831#comment-18651 Une petit mot en trop:

permettre aux utilisateurs de la celle-ci

]]>
By: Sam http://sametmax.com/quest-ce-quun-callback/#comment-16411 Sun, 01 Dec 2013 15:48:16 +0000 http://sametmax.com/?p=1831#comment-16411 Fixed.

]]>
By: Marcel Mauss http://sametmax.com/quest-ce-quun-callback/#comment-16408 Sun, 01 Dec 2013 14:01:17 +0000 http://sametmax.com/?p=1831#comment-16408

# met on en passe un par défaut

AYBABTU! J’te déface ton orthographe!

]]>
By: Sam http://sametmax.com/quest-ce-quun-callback/#comment-14464 Tue, 01 Oct 2013 14:13:24 +0000 http://sametmax.com/?p=1831#comment-14464 C’est une erreur de ma part, la lambda doit accepter tous les arguments, par juste les keywords arguments, donc faire :

             afficher_le_progres=lambda *x, **y: sys.stdout.write('.')):

et NON :

             afficher_le_progres=lambda **x: sys.stdout.write('.')):
]]>
By: Bast http://sametmax.com/quest-ce-quun-callback/#comment-14220 Sat, 14 Sep 2013 09:53:28 +0000 http://sametmax.com/?p=1831#comment-14220 Je fais certainement un truc qui va pas mais chez moi le code cité en exemple donne l’erreur suivante:

>>> download('http://download.ted.com/talks/SirKenRobinson_2006.mp4', 'ted_talk_education.mp4')
Traceback (most recent call last):
File "", line 1, in
File "", line 19, in download
TypeError: () takes exactly 0 arguments (4 given)

]]>
By: Sam http://sametmax.com/quest-ce-quun-callback/#comment-1717 Wed, 05 Sep 2012 15:57:48 +0000 http://sametmax.com/?p=1831#comment-1717 Histoire d’orienter un peu les recherches sur le site, pour ceux qui cherchent:

callback ca veut dire quoi??

Ben, c’est ici qu’il y a la réponse :-)

]]>
By: François http://sametmax.com/quest-ce-quun-callback/#comment-1531 Thu, 23 Aug 2012 15:17:08 +0000 http://sametmax.com/?p=1831#comment-1531 +1 avec Goldy. Merci :)

]]>