Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~749 People Reached
Favorite Tags

7 Posted Topics

Member Avatar for bosko

Hi! I have a class: [CODE=python]class A(object): calledMethod = None def a1(self): pass def a2(self): pass[/CODE] Now when I create an object and call some method: [CODE=python]a = A() a.a1() #or a.a2()[/CODE] I need somehow to save the name of called method in variable calledMethod. Could this be done with …

Member Avatar for bosko
0
107
Member Avatar for poslanik
Member Avatar for MidiMagic
0
183
Member Avatar for siva gouru

Try to look here: [url]http://www.webmonkey.com/webmonkey/98/04/index3a_page10.html?tw=programming[/url] It's little bit old fashion style but it does what you need.

Member Avatar for bosko
0
87
Member Avatar for ongxizhe

This is very good tutorials for beginners: [URL]http://www.w3schools.com/js/default.asp[/URL] [URL="http://www.w3schools.com/js/default.asp"]http://www.tizag.com/javascriptT/[/URL]

Member Avatar for ongxizhe
0
82
Member Avatar for diresaint

Your code not working in Firefox. Maybe you could check this link: [URL]http://www.massless.org/mozedit/[/URL] where you can find how to make it working in Firefox too.

Member Avatar for bosko
0
61
Member Avatar for tefflox
Member Avatar for bosko

Hi all! I have some biginner question: I've started to learn C from the Kernighan&Ritchie book, using Pelles C compiler. Why this code (from the book) dont work: [code=c] #include <stdio.h> /* count characters in input; 1st version */ main() { long nc; nc = 0; while (getchar() != EOF) …

Member Avatar for ~s.o.s~
0
129

The End.