We are pleased to announce the release of Python 3.0 (final), a new production-ready release of the award-winning FIOC-oriented programming language, on December 3rd, 2008.
New features include significantly reduced faggotry and a print function.
>>1
I am never downloading Python 3.0. Guido can pry my functional programming constructs from my cold, dead, anus.
Name:
Anonymous2008-12-03 22:10
>>2 map() and filter() return iterators. If you really need a list, a quick fix is e.g. list(map(...)), but a better fix is often to use a list comprehension (especially when the original code uses lambda), or rewriting the code so it doesn’t need a list at all. Particularly tricky is map() invoked for the side effects of the function; the correct transformation is to use a regular for loop (since creating a list would just be wasteful). Removed reduce(). Use functools.reduce() if you really need it; however, 99 percent of the time an explicit for loop is more readable.
Terrible‽
I am Goydough fon Rawsum and I pronounce anus as anise.
Name:
Anonymous2008-12-04 1:01
Yay, my forced indenture has become an upgraded.
Name:
Anonymous2008-12-04 2:23
Python 3.0 is for Saracen lovers.
Name:
Anonymous2008-12-04 2:47
python
Macintosh:~ $ python
Python 3.0 (r451:74863, Dec 04 2008, 19:35:17)
[GCC 4.0.1 (Apple Inc. build 7465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from __future__ import Guido
>>> print Guido.fate()
Killed by hordes of angry Nomads
>>> exit
Use exit() or Ctrl-D (i.e. EOF) to exit
>>>
God damnit, Python. Still can't exit.
Name:
Anonymous2008-12-04 3:36
# Octal literals are no longer of the form 0720; use 0o720 instead.
Name:
Anonymous2008-12-04 9:49
print Guido.fate() print(Guido.fate())
Name:
Anonymous2008-12-04 9:51
0_o 720
Name:
Anonymous2008-12-04 11:22
>>3
Guido enjoys removing features from Python because he can't understand them.
Name:
Anonymous2008-12-04 11:24
Wow what a shitty programming language. I'll stick with my Haskell thank you very much.