Re: [BangPypers] MOM - Meeting on Sunday May 3rd

2009-05-15 Thread Noufal Ibrahim
We'll stick to the Barista. It would be great if would also be there Srini. I'm sure we'll need to meet now and then to discuss specific issues and having a place available without advance notice is useful even if you *do* have to travel a bit. -- ~noufal

Re: [BangPypers] MOM - Meeting on Sunday May 3rd

2009-05-15 Thread Ramdas S
Girinagar is in South Bangalore, not very easy to find, if you dont know the area Ramdas On Sat, May 16, 2009 at 8:40 AM, Senthil Kumaran wrote: > On Fri, May 15, 2009 at 06:52:53AM +0530, Nanolets nanolets wrote: > > We have a small office in Girinagar (barebones No AC) > > office nothing fanc

Re: [BangPypers] MOM - Meeting on Sunday May 3rd

2009-05-15 Thread Senthil Kumaran
On Fri, May 15, 2009 at 06:52:53AM +0530, Nanolets nanolets wrote: > We have a small office in Girinagar (barebones No AC) > office nothing fancy. > Net connectivity can be enabled. For now and future it can be used > anytime without advance notice. Thanks for the offer. We should keep this optio

Re: [BangPypers] CPython's 'bignum' Implementation

2009-05-15 Thread Baishampayan Ghose
> Now, how does CPython implement bignum? From what I gather, there is > more than way of doing it- using a different radix (base),  an array > of numbers. One hint is given by > http://www.python.org/dev/peps/pep-0237/. However, if any of you folks > know something concrete, I would appreciate it.

Re: [BangPypers] CPython's 'bignum' Implementation

2009-05-15 Thread Amit Saha
On Fri, May 15, 2009 at 7:00 PM, Roshan Mathews wrote: > On Fri, May 15, 2009 at 5:12 PM, Venkatraman S wrote: >> On Fri, May 15, 2009 at 5:09 PM, Amit Saha wrote: >>> http://www.python.org/dev/peps/pep-0237/. However, if any of you folks >>> know something concrete, I would appreciate it. >> >>

Re: [BangPypers] CPython's 'bignum' Implementation

2009-05-15 Thread Roshan Mathews
On Fri, May 15, 2009 at 5:12 PM, Venkatraman S wrote: > On Fri, May 15, 2009 at 5:09 PM, Amit Saha wrote: >> http://www.python.org/dev/peps/pep-0237/. However, if any of you folks >> know something concrete, I would appreciate it. > > Try searching in c.l.p - i think, have read abt this in there.

Re: [BangPypers] CPython's 'bignum' Implementation

2009-05-15 Thread Venkatraman S
On Fri, May 15, 2009 at 5:09 PM, Amit Saha wrote: > Now, how does CPython implement bignum? From what I gather, there is > more than way of doing it- using a different radix (base), an array > of numbers. One hint is given by > http://www.python.org/dev/peps/pep-0237/. However, if any of you fol

[BangPypers] CPython's 'bignum' Implementation

2009-05-15 Thread Amit Saha
Hello all, So, from my SO question: http://stackoverflow.com/questions/867393/how-do-languages-such-as-python-overcome-cs-integral-data-limits , I learn that Python has 'bignum' for supporting Arbitrary Precision arithmetic. Now, how does CPython implement bignum? From what I gather, there is mor