Im correct in that sys.platform will return 'win32' even in 64bits XP-Vista
(except for Cygwin builds)?
In the python docs for 2.4 - 2.5 I havent found conclusive data; the docs for
2.6 seems to imply that.
___
Tutor maillist - Tutor@python.org
htt
On Wed, 11 Jun 2008 20:47:48 -0400 Kent Johnson <[EMAIL PROTECTED]> wrote:
> This thread has both points of view:
> http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-12/4599.html
>
> I think if you are using super() then your classes that inherit from
> object still need to call sup
>> In the following code the __init__ for C would end calling two times
object.__init__ . >> Is this ok or I calling for trouble ? >> To make
explicit some context: >>object is the std python object >>super
is not suposed to be used in any subclass
>Why not? This seems to me the proble
In the following code the __init__ for C would end calling two times
object.__init__ .
Is this ok or I calling for trouble ?
To make explicit some context:
object is the std python object
super is not suposed to be used in any subclass
class A(object):
def __init__(self,**kwargs):
dont indent the line after '\', that means 0 indent
s = 'hello\
boy'
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
> if os.name == "posix":
> fname = "~/" + fname
> infile = open(fname,"w")
you must expand '~' before open:
fname = os.path.join('~',fname)
fname = os.path.expanduser( fname )
infile = open(fname,'w')
___
Tut