Re: [BangPypers] April Meetup

2012-03-25 Thread Picachu Nioto
Would appreciate a response or pointers.

Thanks,
Picachu.

On Sat, Mar 24, 2012 at 12:25 PM, Picachu Nioto picachu.ni...@gmail.comwrote:

 Hi Anand,

 Can you tell me more about these BangPypers meetups?
 What is done there? How long is it? Is it free to attend? Can a bring my
 friend?
 What kind of tutorials are given - basic or advanced topics?

 Also if you have anything specific planned for April session, will like to
 know.
 Since it may fall on Sunday, I have a mind to attend it.

 Thank you.

 Picachu.


 On Sat, Mar 24, 2012 at 12:07 PM, kracethekingmaker 
 kracethekingma...@gmail.com wrote:

 Hi

  Hi,

 I'm at Google office attending the Open Data Camp and asked couple of
 Google folks if they will be interested to host BangPypers meetup and
 they
 were very positive.

 There is a HasGeek event on third saturday of this month, the usual day
 for
 BangPyper meetup. I think some of us will be interested to attend that
 so I
 suggest to postpone the meetup to Sunday.

 Please let me know your thoughts.

 Last month the meetup was at Amrita college and I gave one hour python
 tutorial to about 50 students. The tutorial was well received and many of
 them said that they will consider Python for their final year project.

 So Happy to hear.
 Yes we can have it on Sunday, rather than 2nd saturday.

  Anand
 __**_
 BangPypers mailing list
 BangPypers@python.org
 http://mail.python.org/**mailman/listinfo/bangpypershttp://mail.python.org/mailman/listinfo/bangpypers



 --
 Talk is cheap, show me the code -- Linus Torvalds
 Regards
 Kracekumar.R
 www.kracekumar.com


 __**_
 BangPypers mailing list
 BangPypers@python.org
 http://mail.python.org/**mailman/listinfo/bangpypershttp://mail.python.org/mailman/listinfo/bangpypers



___
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers


Re: [BangPypers] April Meetup

2012-03-25 Thread Picachu Nioto
On Sun, Mar 25, 2012 at 5:23 PM, Balachandran Sivakumar 
benignb...@gmail.com wrote:

 Hi,

 On Sun, Mar 25, 2012 at 5:17 PM, Picachu Nioto picachu.ni...@gmail.com
 wrote:
  Would appreciate a response or pointers.
 

   The meet-ups happen once a month, mostly on 3rd Saturdays.
 All are welcome and you can bring in your friends as well. The agenda
 will be discussed the week preceding the meeting. Please do drop by
 for the next meeting :) Thanks


Thanks! Sure, I'll try to make it. Will need to see the agenda as it is out
though.



 PS: Please do not post questions not directly related to the subject,
 in the same thread. You can always start a new thread. :)


Yes, I do not. But this one was relevant to the subject.


  Thanks,
  Picachu.
 


Picachu
___
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers


Re: [BangPypers] April Meetup

2012-03-24 Thread Picachu Nioto
Hi Anand,

Can you tell me more about these BangPypers meetups?
What is done there? How long is it? Is it free to attend? Can a bring my
friend?
What kind of tutorials are given - basic or advanced topics?

Also if you have anything specific planned for April session, will like to
know.
Since it may fall on Sunday, I have a mind to attend it.

Thank you.

Picachu.


On Sat, Mar 24, 2012 at 12:07 PM, kracethekingmaker 
kracethekingma...@gmail.com wrote:

 Hi

  Hi,

 I'm at Google office attending the Open Data Camp and asked couple of
 Google folks if they will be interested to host BangPypers meetup and they
 were very positive.

 There is a HasGeek event on third saturday of this month, the usual day
 for
 BangPyper meetup. I think some of us will be interested to attend that so
 I
 suggest to postpone the meetup to Sunday.

 Please let me know your thoughts.

 Last month the meetup was at Amrita college and I gave one hour python
 tutorial to about 50 students. The tutorial was well received and many of
 them said that they will consider Python for their final year project.

 So Happy to hear.
 Yes we can have it on Sunday, rather than 2nd saturday.

  Anand
 __**_
 BangPypers mailing list
 BangPypers@python.org
 http://mail.python.org/**mailman/listinfo/bangpypershttp://mail.python.org/mailman/listinfo/bangpypers



 --
 Talk is cheap, show me the code -- Linus Torvalds
 Regards
 Kracekumar.R
 www.kracekumar.com


 __**_
 BangPypers mailing list
 BangPypers@python.org
 http://mail.python.org/**mailman/listinfo/bangpypershttp://mail.python.org/mailman/listinfo/bangpypers

___
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers


[BangPypers] Enclosing lexical context

2010-04-15 Thread Picachu Nioto
Could some one explain to me this sentence, I read in an example online

Python doesn't implement assignment of variables bound in an enclosing
lexical context

Example,
a=[b]

--Picachu
___
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers


Re: [BangPypers] Enclosing lexical context

2010-04-15 Thread Picachu Nioto
Thanks for the prompt response Noufal!

Could you explain, in what context is it mentioned here?
http://pastebin.com/zLnL7yy8

http://pastebin.com/zLnL7yy8

On Thu, Apr 15, 2010 at 11:09 PM, Noufal Ibrahim nou...@gmail.com wrote:

 On Thu, Apr 15, 2010 at 10:36 PM, Picachu Nioto picachu.ni...@gmail.com
 wrote:
  Could some one explain to me this sentence, I read in an example online
 
  Python doesn't implement assignment of variables bound in an enclosing
  lexical context
 
  Example,
  a=[b]

 I'm not sure where you got this sentence means but Python's scoping is
 lexical but has 2 namespaces accessible from the current point of
 execution (locals and globals) which are arguably dynamic. Here's an
 example to show lexical scoping.

 http://pastebin.com/k2S5pvjZ

 You can see that it prints 1 which is the value of the free identifier
 foo lexically at the point of the print.

 As a counter example, here's an example in Emacs lisp which parallels
 the above but since it's dynamically scoped, the value printed is 2.
 http://pastebin.com/KX0JwC0u



 --
 ~noufal
 http://nibrahim.net.in
 ___
 BangPypers mailing list
 BangPypers@python.org
 http://mail.python.org/mailman/listinfo/bangpypers

___
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers