PEP 3119 ABC - And how I learned to love the Abstract Bomb

2010-05-11 Thread Hatem Nassrat
Python is more flexible than Java, so having Conditional Meta Abstract Base Classes seems only natural :P, maybe someone should write a PEP. This only reminds me of the following tweet: http://twitter.com/bos31337/status/13349058839 -- Hatem Nassrat -- http://mail.python.org/mailman/listinfo/python-list

Set Your EMAIL CLIENT dates correctly.

2008-10-10 Thread Hatem Nassrat
I am sure this has been ranted about. People who have their dates in their client set to 2020 should be banned from using the internet, unless they have a legitimate reason like doing y3k testing on the Python Mailing list. -- Hatem Nassrat -- http://mail.python.org/mailman/listinfo/python-list

Re: How to create a tuple quickly with list comprehension?

2008-10-10 Thread Hatem Nassrat
00))) 1000 loops, best of 3: 271 ??s per loop In [28]: %timeit tuple((x for x in range(1000))) 1000 loops, best of 3: 253 ??s per loop In [29]: %timeit tuple((x for x in range(1000))) 1000 loops, best of 3: 276 ??s per loop Thanks -- Hatem Nassrat -- http://mail.python.org/mailman/listinfo/python-list