The signs are all over the place. I can count at least five implementations of Python today: CPython, CL-Python, Jython, IronPython, and PyPy. The use of the language is sky rocketting and set to grab real mind-share as the hype over Ruby subsides. Things are looking good for a favorite green snake and british comedy troop reference, aren't they? Trouble is on the horizon in the very ingredients that could push us into true success.
Our community and our very language is in danger of segregation, unless we all do something about it and learn to get along.
One of the most visible dangers (to me) is being ignored for various political, cultural, and non-technical reasons. IronPython's users are increasingly pushing IronPython-only recipes, libraries, and tutorials. No one is talking about the transition of the alternative implemenations to CPython 3.0 compatability. To make matters worse, we still can not define the language without refering to an implementation. This is very unlike the motivations that have made the language and its community so great.
Although it has had measured success in a lot of areas, there is a lot of negative sentiment around IronPython, which is often seen as traiterous to a degree by the open source community members who are active with Python, and don't want to see it making bed-fellows with the Redmond empire. No one cares about getting Zope, Twisted, and lots of other popular projects to work with IronPython, or Jython and even PyPy, for that matter. The disconnect between the traditional Python community and the IronPython community means things like this are ignored, because no one on the traditional side cares and few on the IronPython side know better or consider the rammafications of their actions. We need to consider the language as a whole and understand the value of our many implemenations, especially those larger projects with a community responsibility. Of course, someone should step up to the challenge.
The seperate between the pythons will only grow when 3.0 is released in a few years, pushing the other implementations behind in compatability by many years. This is something less easy to fix than most realize. The other projects simply dont have the resources that CPython does, and will fail to make the updates until many more years after 3.0 is the standard. There is a strong chance that this will lead to a fragmentation of the language, where IronPython might split off when it realizes that:
Consolidation is the key to keeping our head on our collective shoulders. There is a lot of redundant work. There are module being maintained by at least three implementations and updates dont propogate often enough if there is cross over. In many cases, there isn't even enough cross over in the first place to cooperate on! Can you really consider IronPython a Python when you don't have os, pickle, or StringIO? Many of these missing pieces could be brought directly from CPython (licensing permitted, maybe someone can comment on any possible problems there). I believe (corrections are welcome) that PyPy does use many of the pure python modules from the CPython distribution. We can do better and sharing needs to become the norm, not the surprise.
When I write a small library and I use StringIO, i really don't care if someone uses my module over CPython, Jython, IronPython, or PyPy. As a matter of fact, I'd love to see it used on all four! I have to inherently declare no support for IronPython, because I use a standard language module StringIO. People might forget but the stdlib is a part of the language as much as a for loop. If we had Python the language in its completeness and we had no libraries, we wouldn't have anything close to what we have today. Policies need to be put into place for cooperatively sharing between the implementations all the pure python modules that are possible. As long as they are being shared, they don't belong to any one implementation and should be more open to a joint management of their direction, including implementation specific, optional optimizations, such as using the CLR assemblies or Java classes that natively implement much of the functionality. We already have platform specific code branches, so this is not a stretch. The kind of sharing I call for will bring a lot of the work together so that overall we require less resources, yet produce more results.
Non pure-python modules are something more of a problem. How does PyPy handle shared libraries, or IronPython while remaining a pure CLR solution? How does someone take advantage of .Net and Python without excluding the rest of the Python community? We have to make a lot of tough decisions, because no clear solution is on the horizon. We can look to RPython for a lot of advice, and just imagine if we had a conversion path from RPython to C# or directly to CLI bytecode. I don't want to have to rely on everything in pure python, until PyPy is more complete, but I don't want pygame to be stranded tied to C-land. The horizon might be empty, but we need to keep wandering towards it with high chins, just the same.
A little, I wrote about the problems of culture between the traditional Python community members and those embracing and using IronPython. I did not expand on that much here, trying to be more balenced, but I'd like to expand on it in a future post. The more comments I can get about your opinions there, the more interesting the future post will be.
Our community and our very language is in danger of segregation, unless we all do something about it and learn to get along.
One of the most visible dangers (to me) is being ignored for various political, cultural, and non-technical reasons. IronPython's users are increasingly pushing IronPython-only recipes, libraries, and tutorials. No one is talking about the transition of the alternative implemenations to CPython 3.0 compatability. To make matters worse, we still can not define the language without refering to an implementation. This is very unlike the motivations that have made the language and its community so great.
Although it has had measured success in a lot of areas, there is a lot of negative sentiment around IronPython, which is often seen as traiterous to a degree by the open source community members who are active with Python, and don't want to see it making bed-fellows with the Redmond empire. No one cares about getting Zope, Twisted, and lots of other popular projects to work with IronPython, or Jython and even PyPy, for that matter. The disconnect between the traditional Python community and the IronPython community means things like this are ignored, because no one on the traditional side cares and few on the IronPython side know better or consider the rammafications of their actions. We need to consider the language as a whole and understand the value of our many implemenations, especially those larger projects with a community responsibility. Of course, someone should step up to the challenge.
The seperate between the pythons will only grow when 3.0 is released in a few years, pushing the other implementations behind in compatability by many years. This is something less easy to fix than most realize. The other projects simply dont have the resources that CPython does, and will fail to make the updates until many more years after 3.0 is the standard. There is a strong chance that this will lead to a fragmentation of the language, where IronPython might split off when it realizes that:
- Most of its code is specific to IronPython anyway
- It is already incompatible with most of the Python code that has migrated to 3.0
- A major migration of the language to 3.0 will cost and gain as many users as any original changes they might make
Consolidation is the key to keeping our head on our collective shoulders. There is a lot of redundant work. There are module being maintained by at least three implementations and updates dont propogate often enough if there is cross over. In many cases, there isn't even enough cross over in the first place to cooperate on! Can you really consider IronPython a Python when you don't have os, pickle, or StringIO? Many of these missing pieces could be brought directly from CPython (licensing permitted, maybe someone can comment on any possible problems there). I believe (corrections are welcome) that PyPy does use many of the pure python modules from the CPython distribution. We can do better and sharing needs to become the norm, not the surprise.
When I write a small library and I use StringIO, i really don't care if someone uses my module over CPython, Jython, IronPython, or PyPy. As a matter of fact, I'd love to see it used on all four! I have to inherently declare no support for IronPython, because I use a standard language module StringIO. People might forget but the stdlib is a part of the language as much as a for loop. If we had Python the language in its completeness and we had no libraries, we wouldn't have anything close to what we have today. Policies need to be put into place for cooperatively sharing between the implementations all the pure python modules that are possible. As long as they are being shared, they don't belong to any one implementation and should be more open to a joint management of their direction, including implementation specific, optional optimizations, such as using the CLR assemblies or Java classes that natively implement much of the functionality. We already have platform specific code branches, so this is not a stretch. The kind of sharing I call for will bring a lot of the work together so that overall we require less resources, yet produce more results.
Non pure-python modules are something more of a problem. How does PyPy handle shared libraries, or IronPython while remaining a pure CLR solution? How does someone take advantage of .Net and Python without excluding the rest of the Python community? We have to make a lot of tough decisions, because no clear solution is on the horizon. We can look to RPython for a lot of advice, and just imagine if we had a conversion path from RPython to C# or directly to CLI bytecode. I don't want to have to rely on everything in pure python, until PyPy is more complete, but I don't want pygame to be stranded tied to C-land. The horizon might be empty, but we need to keep wandering towards it with high chins, just the same.
A little, I wrote about the problems of culture between the traditional Python community members and those embracing and using IronPython. I did not expand on that much here, trying to be more balenced, but I'd like to expand on it in a future post. The more comments I can get about your opinions there, the more interesting the future post will be.
Comments
"One of the most visible dangers (to me) is being ignored for various political, cultural, and non-technical reasons. IronPython's users are increasingly pushing IronPython-only recipes, libraries, and tutorials."
On what do you actually base this? You offer no evidence, and as a member of both the Python community and the IronPython community it just seems completely wrong. Various people (Seo notably) are putting a lot of effort into ensuring that Python extension libraries can be used with IronPython.
"Can you really consider IronPython a Python when you don't have os, pickle, or StringIO?"
This is just plain incorrect. I've never used StringIO with IronPython (though it probably works). Both pickle and os work fine...
No one is talking about the transition of the alternative implemenations to CPython 3.0 compatability.
2) While Zope and Twisted have stayed cpython-centric, there are lots of other important programs getting ported to work with IronPython.
3) JPython and PyPy are not of a sufficient completeness to work with most project, and thus including them here doesn't really help. You're really talking about the only two complete python implementations, IronPython and CPython.
4) I wouldn't say there's "a lot" of negative sentiment about IronPython. Evidence? I'd say there's basically an apathetic camp and excited camp, in my experience.
5) CPython 3.0 is still so far off that IronPython can't begin implementing it, even if it wanted to. Furthermore, who's to say they won't? Have they said anything to that effect?
"Everything I know about IronPython, I learned from Fuzzyman's titles passing through my feed reader. I see it as a neat hack: Python + Microsoft, lol. So when Calvin Spealman sounds an alarm that CPython and IronPython are in danger of forking, it makes me think that there's something more going on here."
Should I support IronPython? Will it hurt?
Should I support IronPython? Will it hurt?
Certainly, previous Python releases have always caused some ripples in the pond: as the day version 2.x comes out, someone's software inevitably declares that version to be a mandatory dependency. But the danger with 3.0 is that the number of changes won't be countable on one hand, nor will they all be superficial. Consequently, there may be a need to maintain multiple branches of one's projects if one seeks to support 2.x and 3.x over time, and as one sees with projects like mod_python (where Apache 1.x is supported by mod_python 2.x, Apache 2.x by mod_python 3.x) perhaps the support won't be as great for the established product, even if it may be more widely deployed.
I suppose we have to be thankful that the featurefest that initially surrounded 3.0 subsided as the reality dawned that multimethods, static type declarations and a long list of bikeshed colour charts only make the process of delivering 3.0 longer, more controversial, and probably highly unsatisfactory. But the rush to 3.0 has quite nicely highlighted what some people already observed about CPython development vs. the supposedly unworthy Jython (which gets a lot of "real world" usage) and other implementations: if those implementations "drop anchor" for whatever reason, the claim to being a multi-implementation language whose textbooks aren't already dated before publication just vanishes in the hot air of the claimants.
I wonder, with IronPython at 2.4, PyPy and CLPython targeting 2.4, and Jython's developers dreaming of 2.4 compliance, that we already have some kind of established standard, especially if the will to continually chase the 3.0 developers isn't there.
> a sufficient completeness to work
> with most project, and thus including
> them here doesn't really help. You're
> really talking about the only two
> complete python implementations,
> IronPython and CPython.
Sorry, but that's just nonsense. PyPy is way more complete and bug-free as a Python implementation than IronPython. The main reasons for adopting IronPython are access to the .NET libraries, not because it is a complete Python implementation.
Cheers,
Carl Friedrich Bolz
>> a sufficient completeness to work
>> with most project, and thus including
>> them here doesn't really help. You're
>> really talking about the only two
>> complete python implementations,
>> IronPython and CPython.
> Sorry, but that's just nonsense. PyPy > is way more complete and bug-free as a > Python implementation than IronPython. > The main reasons for adopting
> IronPython are access to the .NET
> libraries, not because it is a
> complete Python implementation.
Carl,
I really respect what you guys are doing with Pypy, but I don't think we're arguing about the same thing here. There's no way that Pypy is of a sufficient maturity or speed to use in a serious project right now.
(Alternatively, if it is, you guys are doing a terrible job selling it. I'd be extremely excited if it were.)
I just now downloaded and ran pypy. After it took the interpreter 15 seconds to start, it took about a minute to do "import cPickle".
Running py.py on a test for a generator of all n-tuples I recently wrote takes python .146 seconds and py.py 6.006 seconds.
The "complete" that I was talking about in my post is not just the implementation of the python language, but includes running programs in a reasonable amount of time.
> I just now downloaded and ran pypy.
> After it took the interpreter 15
> seconds to start, it took about a
> minute to do "import cPickle".
> Running py.py on a test for a
> generator of all n-tuples I recently
> wrote takes python .146 seconds and
> py.py 6.006 seconds.
> The "complete" that I was talking
> about in my post is not just the
> implementation of the python language,
> but includes running programs in a
> reasonable amount of time.
Ah, but that is running py.py on top of CPython, which is necessarily
very slow. The way to get a get a comparatively fast pypy is by
translating it to C. The result is an interpreter which is between 2-6
times slower than CPython, which is not so bad
Cheers,
Carl Friedrich Bolz
For myself, I'm going to switch to 3000 after google switches to it. So until then 2.4 is the standard implementation.
People can write new things in IronPython if they want though...