12/4 FORTRAN, er, Python 3.0 / 3000 is out:
http://www.python.org/download/releases/3.0
\_ As someone who tried out Python and disliked it, is there a reason I
should take a look at it again?
\_ Not really. Why'd you dislike Python? I love it.
\_ The whitespace was a killer, other syntax a bit clunky,
regular expression syntax was hideous. Once I found Ruby, I
never looked back. The problems with Ruby are: 1) threading
and 2) performance. That's what they're dealing with in the
next release.
current release.
\_ Passing around "self" alot and usage of convention in class
syntax shows that the OOP was added as an afterthought no
matter what guido says. Also they are going to keep that GIL
forever which hurts their multithreaded performance. Maybe
jython will fix that but i'm not hopeful.
\_ Ugh, not this again, there was a lengthy argument on the
Python mailing list on this. It's not that self was *added*,
but that an explicit self disambiguates variable resolution.
I happen to agree, and this is one of the reasons I'm so
fond of Python. It's a matter of personal preference. I have
little to say on the GIL since I either don't do parallel
with Python, or use processes to do it. --t
Python mailing list on this. It's not that self was
*added*, but that an explicit self disambiguates variable
resolution. I happen to agree, and this is one of the
reasons I'm so fond of Python. It's a matter of personal
preference. I have little to say on the GIL since I either
don't do parallel with Python, or use processes to do it.
--t
\_ Let me expand a little. There's nothing keeping them from
making 'self' implicit *technically*; however, this was
debated several times over for Python 3k and the consensus
(not decree) was that Python is better with it than without.
(not decree) was that Python is better with it than
without.
Also, if you want a multithreaded app, presumably you are
targeting performance, or you'd be writing it with processes
instead. At that point, why not use the Python API with C
or something to do threads? (This is an honest question, not
a hypothetical question.) I use Python for the speed of
development and the clear (IMO) semantics. Besides, isn't
Stackless Python what you're looking for? --t
targeting performance, or you'd be writing it with
processes instead. At that point, why not use the Python
API with C or something to do threads? (This is an honest
question, not a hypothetical question.) I use Python for
the speed of development and the clear (IMO) semantics.
Besides, isn't Stackless Python what you're looking for?
--t
\_ I always found regexp in Python to be insane. Is this better in
Python 3? |