[Tutor] Fwd: eclipseplugin for python

2006-05-11 Thread shivayogi kumbar


I downloadedpython plugin for eclipse by directly downloading zip file and extracting under eclipse folder; because it could not update via PROXY.It was suggested to update plugins from eclipse IDE only. I am unable to use that plugin(Python) in eclipse. Is it a problem of proxy or any other? I want to know how to configure eclipse to adapt to python. 

Let me know latest version of eclipse and python plugin.
Thanks.-- regardsShiv 
___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


[Tutor] assert

2005-12-23 Thread shivayogi kumbar
sir,
   I would like to know about 'asser't keyword how it works in the
fallowing program
   class myClass:
count = 0
 def __init__(self):
  myClass.count = myClass.count + 1
  def __del__(self):
   myClass.count =myClass.count -1
assert myClass.count0
  def howmany(self):
   return myClass.count

 a=myClass()
b=myClass()
a.howmany()
del b
del a
___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor