Python History
Python History
html
Followers
A Brief Timeline of Python
The development of Python occurred at a time when many other Followers (1218) Next
dynamic (and open-source) programming languages such as Tcl,
Perl, and (much later) Ruby were also being actively developed
and gaining popularity. To help put Python in its proper historical
perspective, the following list shows the release history of Python.
The earliest dates are approximate as I didn't consistently record
all events:
6 comments:
http://www.vimeo.com/1093745
Reply
Reply
a) how long did it take you to realize the "range" function is using huge
amounts of memory when used in a for loop ? Did you not envison
people needing more than a few iterations ? If there should only be one
way to do something, why have both range and xrange ?
c) how many more special reserved words are you going to use for
"built-in" functions, and are there going to be any "free" names left for
people to use in their programs without fear of conflict ?
d) how many more upgy underscore methods are you going to hack into
the "language" ?
Reply
Wish all these subversion repositories would quickly move onto a DVCS,
like git.
Reply
@Uzah:
b) what's wrong with open() ? it could conceivably return more than files.
in 3.0, it returns an io.BufferedReader.
c) built in functions are not reserved words. you can define your own
function called open, and you can use a local variable called open
without any problems.
e) they all do very different things (except for has_key, which is going
away).
Reply
Reply
Publish Preview