From: D'Arcy J.M. Cain on
On Wed, 9 Jun 2010 14:24:50 +0530
madhuri vio <madhuri.vio(a)gmail.com> wrote:
> sir i am wanted to know more in detail about expressions ..if u can give an
> abstract idea...

Please read this before posting again.

http://www.catb.org/~esr/faqs/smart-questions.html

--
D'Arcy J.M. Cain <darcy(a)druid.net> | Democracy is three wolves
http://www.druid.net/darcy/ | and a sheep voting on
+1 416 425 1212 (DoD#0082) (eNTP) | what's for dinner.
From: D'Arcy J.M. Cain on
On Wed, 9 Jun 2010 09:50:18 -0400
"D'Arcy J.M. Cain" <darcy(a)druid.net> wrote:
> On Wed, 9 Jun 2010 14:24:50 +0530
> madhuri vio <madhuri.vio(a)gmail.com> wrote:
> > sir i am wanted to know more in detail about expressions ..if u can give an
> > abstract idea...
>
> Please read this before posting again.
>
> http://www.catb.org/~esr/faqs/smart-questions.html

Apologies to the list. I did "Reply" but it went to the list instead
of the sender even though there was no Reply-To header.

--
D'Arcy J.M. Cain <darcy(a)druid.net> | Democracy is three wolves
http://www.druid.net/darcy/ | and a sheep voting on
+1 416 425 1212 (DoD#0082) (eNTP) | what's for dinner.
From: Gabriel Genellina on
En Wed, 09 Jun 2010 05:03:36 -0300, madhuri vio <madhuri.vio(a)gmail.com>
escribi�:

> url[, data[, timeout])
>
> in this format of passing arguments i dint understand d syntax...d comma
> is
> coming immediately after the bracket...dint get it..

Those square brackets are not "real" brackets, you're not supposed to
actually include them. They indicate an optional section, e.g., given this
description:

FTP.connect(host[, port[, timeout]])

you may invoke the method as:

connect(host)
connect(host, port)
connect(host, port, timeout)

--
Gabriel Genellina