active questions tagged python+subjective - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T17:09:20Zhttp://stackoverflow.com/feeds/tag/python+subjectivehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1864393/python-selector-url-routing-library-experience-opinions1Python Selector (URL routing library), experience/opinions?Richard Levasseur2009-12-08T03:33:34Z2009-12-08T15:09:57Z
<p>Does anyone have opinions about or experience with <a href="http://lukearno.com/projects/selector/" rel="nofollow">Python Selector</a>? It looks great, but I'm a bit put off by its "Alpha" status on pypi and lack of unit tests.</p>
<p>I mostly like that its simple, self contained, and pure WSGI. All other url routers I've found assume I'm using django, or pylons, or paste, or pull in lots of other dependencies, or just don't let me create a simple <em>mapping</em> of url patterns to wsgi apps. Really, all I want to do is:</p>
<pre><code>mapper.add("/regex/{to}/{resource}", my_wsgi_app)
mapper.add("/another/.*", other_wsgi_app)
...etc...
</code></pre>
<p>Anyways, has anyone used it before, or know of projects that have?</p>
http://stackoverflow.com/questions/34570/what-is-the-best-quick-read-python-book-out-there9What is the best quick-read Python book out there?Sam McAfee2008-08-29T16:10:41Z2009-12-06T13:41:30Z
<p>I am taking a class that requires Python. We will review the language in class next week, and I am a quick study on new languages, but I was wondering if there are any really great Python books I can grab while I am struggling through the basics of setting up my IDE, server environment and all those other "gotchas" that come with a new programming language. Suggestions?</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python255Hidden features of Pythonjelovirt2008-09-19T11:50:36Z2009-12-05T22:10:16Z
<p>What are the lesser-known but useful features of the Python programming language.</p>
<ul>
<li>Try to limit answers to Python core</li>
<li>One feature per answer</li>
<li>Give an example and short description of the feature, not just a link to documentation</li>
<li>Label the feature using bold title as the first line</li>
</ul>
http://stackoverflow.com/questions/1764878/favorite-3rd-party-python-libraries21Favorite 3rd-party Python Libraries?GSto2009-11-19T17:02:09Z2009-12-05T18:55:10Z
<p>The more I've learned about Python, The more I've heard about several external libraries that are available, and I was wondering what are some of your favorite python libraries that are availible.</p>
<p>A few of my favorites I've discovered:</p>
<ul>
<li><a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">Beautiful Soup</a> - for scraping web sites</li>
<li><a href="http://www.pygame.org" rel="nofollow">PyGame</a> - for game development</li>
<li><a href="http://sourceforge.net/projects/mysql-python/" rel="nofollow">MySQLdb</a> - for interacting with a MySQL database. absolutely essential for some projects.</li>
</ul>
<p>so what are some of your favorites?</p>
http://stackoverflow.com/questions/550632/favorite-django-tips-features82Favorite Django Tips & Features?Haes2009-02-15T10:06:22Z2009-12-03T04:08:47Z
<p>Inspired by the question series 'Hidden features of ...', I am curious to hear about your favorite Django tips or lesser known but useful features you know of.</p>
<ul>
<li>Please, include only one tip per answer.</li>
<li>Add Django version requirements if there are any.</li>
</ul>
http://stackoverflow.com/questions/89574/which-language-is-most-like-php1Which language is most like PHP?Unkwntech2008-09-18T02:50:18Z2009-12-01T11:24:06Z
<p>I am a PHP dev looking to pickup a new language, I have tried and failed on C++ several times (possibly for my overall lack of interest).
I've been hearing a lot about Python, and Ruby and my question is this:
Which of these languages (Python, Ruby) should be easiest for someone with a background in PHP to learn?</p>
<p>Update (6 months later):</p>
<p>I decided at the time of this question to go the Python route, I spent some time learning Python but I didn't really enjoy the language, I eventually moved on to C# which I greatly enjoy, and infact have developed 2 application in C# already and have another 3-5 lined up. I do intend on looking into Ruby when I have some free time, but until then I'll advise anyone else in the position that I was in when this question was asked to skip both Ruby and Python and look into C#. I was a hard-core anti-.net anti-msft and although I still don't like the dependence on .net I do like the design of the language overall.</p>
http://stackoverflow.com/questions/1779004/is-pygtk-or-pyqt-preferred-for-making-gtk-native-python-apps1Is PyGTK or PyQT preferred for making GTK-native Python apps?mcrittenden2009-11-22T15:21:13Z2009-11-30T07:27:51Z
<p>I'm a web developer looking to get my feet wet with coding up a little desktop app for Ubuntu in Python. I've scoured the web looking for the pros and cons of PyGTK vs. PyQT and can't really find any good comparisons.</p>
<p>What do you guys think? Do they both produce native-looking widgets on a GNOME system? Is one easier to use than the other? Any opinions would be nice.</p>
<p>Sorry for the subjective question.</p>
http://stackoverflow.com/questions/1806715/will-python-3-fail-5Will Python 3 Fail? [closed]simsong2009-11-27T04:25:47Z2009-11-27T05:27:25Z
<p>Various versions of Python 3 have been released for nearly a year. Python 3 is, of course, the backwards incompatible release of the popular Python language. Many people who have tried moving from Python 2 to Python 3 have found that they don't like it --- primarily because print is now a function, not a statement. That means that this:</p>
<pre><code>print 3
</code></pre>
<p>no longer works. Instead you must say:</p>
<pre><code>print(3)
</code></pre>
<p>and this just drives people crazy.</p>
<p>The real problem with the transition to Python 3 is that significant amounts of code need to be rewritten. Yes, there are automated tools for doing the python 2 to python 3 translation, but they aren't fun to use. </p>
<p>Lots of code is still in Python 2. It isn't being ported to Python 3.</p>
<p>So do people think that Python 3 will fail?</p>
http://stackoverflow.com/questions/457757/what-is-the-best-python-book-for-experienced-programmers16What is the best python book for experienced programmers?VoidPointer2009-01-19T14:31:58Z2009-11-26T11:14:43Z
<p>I am a fairly experienced programmer, mostly C, C++, Java and C#...
Can you recommend any Python books that would help me to get the most out of my existing experience? Many Python books I have read good reviews about seem to be aimed at the novice programmer - I'd like to find something that "gets right down to business".
There are many good resources on the web of course but I would like to have a real book that possibly goes a bit into detail about specific concepts, techniques and patterns that are specific to python.</p>
<p>Related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/412482/resources-for-moving-to-python">Resources for moving to Python</a></li>
<li><a href="http://stackoverflow.com/questions/142834/best-python-book-for-a-lifelong-php-developer">Best Python book for a lifelong PHP developer?</a></li>
<li><a href="http://stackoverflow.com/questions/356161/python-coding-standards-best-practices">Python coding standards/best practices</a></li>
<li><a href="http://stackoverflow.com/questions/918/how-to-learn-python-good-example-code">How to learn Python: Good Example Code?</a></li>
</ul>
http://stackoverflow.com/questions/1773063/what-python-features-will-excite-the-interest-of-a-c-developer13What Python features will excite the interest of a C# developer?Learner2009-11-20T20:30:24Z2009-11-25T19:24:57Z
<p>For someone who’s been happily programming in C# for quite some time now and planning to learn a new language I find the Python community more closely knit than many others. </p>
<p>Personally dynamic typing puts me off, but I am fascinated by the way the Python community rallies around it. There are a lot of other things I expect I would miss in Python (LINQ, expression trees, etc.) </p>
<p>What are the good things about Python that developers love? Stuff that’ll excite me more than C#.</p>
http://stackoverflow.com/questions/1183420/web-service-php-or-ruby-on-rails-or-python0Web service: PHP or Ruby on Rails or Python?Codezy2009-07-26T00:21:46Z2009-11-25T19:16:11Z
<p>I am a .Net / SQL Server developer via my daytime job, and on the side I do some objective C development for the iPhone. I would like to develop a web service and since dreamhost supports mySql, python, ruby on rails and PHP5, I would like to create it using one of those languages. If you had no experience in either python, Ruby on Rails or PHP, which would you go with and why? The service basically just takes a request and talks to a MySql database.</p>
<p>Note: Was planning on using the SOAP protocol.. though I am open to suggestions since I have a clean slate with these languages.</p>
http://stackoverflow.com/questions/90032/reasons-not-to-use-django8Reasons not to use djangohamdiakoguz2008-09-18T04:32:07Z2009-11-25T17:11:17Z
<p>Have you considered using Django and found good reasons not to do so? </p>
http://stackoverflow.com/questions/1794546/most-useful-additional-python-libraries-2Most useful additional Python libraries? [closed]psihodelia2009-11-25T04:08:31Z2009-11-25T05:47:00Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1764878/favorite-3rd-party-python-libraries">Favorite 3rd-party Python Libraries?</a> </p>
</blockquote>
<p>What are some of the most useful Python libraries not included into the standard library?</p>
http://stackoverflow.com/questions/405540/what-is-a-cyclic-data-structure-good-for6What is a cyclic data structure good for?Jim Robert2009-01-01T22:06:09Z2009-11-22T23:36:32Z
<p>Hello,</p>
<p>I was just reading through "Learning Python" by Mark Lutz and came across this code sample:</p>
<pre><code>
>>> L = ['grail']
>>> L.append(L)
>>> L
['grail', [...]]
</code></pre>
<p>It was identified as a cyclic data structure.</p>
<p>So I was wondering, and here is my question:</p>
<h2><strong>What is a 'cyclic data structure' used for in real life programming?</strong></h2>
<p>There seems to be a little confusion, which i think stems from the very brief code sample... here's a few more lines using the same object L</p>
<pre><code>
>>> L[0]
'grail'
>>> L[1][0]
'grail'
>>> L[1][1][0]
'grail'
</code></pre>
<h2><strong>edit</strong>: I'll be honest, I still don't really get it. can anyone give some code samples?</h2>
http://stackoverflow.com/questions/1771898/what-is-the-best-browser-automation-tool-for-python1What is the best browser automation tool for Python?roddik2009-11-20T17:06:41Z2009-11-21T12:39:43Z
<p>Hello, I want to write a following script: given a text file with the list of actions to be executed on a certain site it would use some browser's (IE probably, because I don't know anything about other drive-able ones) CSS rendering and JS executing capabilities to imitate a user doing those actions on a site. </p>
<p>So I've found <a href="http://pycheesecake.org/wiki/PythonTestingToolsTaxonomy" rel="nofollow">this page</a> and the "web testing" section of it and it lists:</p>
<ul>
<li>PAMIE</li>
<li>PYXPCOM </li>
<li>Windmill</li>
<li>Selenium</li>
</ul>
<p>The latter two run some sort of a server on the localhost (which doesn't seem to be well suitable decision).<br>
Pamie has some sort of the worst documentation ever and lots of "Under Construction" pages on their site last updated in 2006.<br>
And PyXPCOM seems to be created not specifically for FF. I may be a bad Googler but I still didn't find a decent example of using PyXPCOM for something like using FF. </p>
<p>Which way to guide the browser would you prefer for my purposes and why? TIA</p>
<p><strong>Update</strong>:<br>
I need to be able to render the JavaScript on the page. I guess using some server-based library is not a good solution since it is limited to one instance of browser at a time, so I won't be able to, for example, set 2 browser instances to 2 different proxies without having to make 2 servers (is this correct?).</p>
http://stackoverflow.com/questions/186472/from-x-import-a-versus-import-x-x-a3from X import a versus import X; X.acdleary2008-10-09T09:04:34Z2009-11-19T14:33:55Z
<p>This is one of those semi-religious Python questions that I suspect has well reasoned responses lurking in the community. I've seen some Python programmers use the following style fairly consistently (we'll call it style 1):</p>
<pre><code>import some_module
# Use some_module.some_identifier in various places.
</code></pre>
<p>For support of this style you can cite the <a href="http://www.python.org/dev/peps/pep-0020/" rel="nofollow">"explicit is better than implicit"</a> maxim. I've seen other programmers use this style (style 2):</p>
<pre><code>from some_module import some_identifier
# Use some_identifier in various places.
</code></pre>
<p>The primary benefit that I see in style 2 is maintainability -- especially with duck typing ideals I may want to swap some_module for some_other_module. I also feel style 2 wins points with the <a href="http://www.python.org/dev/peps/pep-0020/" rel="nofollow">"readability counts"</a> maxim. Although I tend to disagree, one can always argue that search-and-replace is just as good an option when using the first style.</p>
<p><strong>Addendum:</strong> It was noted that you could use <code>as</code> to solve the switch from <code>some_module</code> to <code>some_other_module</code> in style 1. I forgot to mention that it is also common to decide to implement <code>some_identifier</code> in your <em>current</em> module, which makes creation of an equivalent <code>some_module</code> container slightly awkward.</p>
http://stackoverflow.com/questions/1743526/differences-between-go-and-cython0Differences between Go and CythonMiguel Rentes2009-11-16T17:12:34Z2009-11-17T13:55:04Z
<p>Today a great friend of mine asked me what are the main differences between the newest Go language and <a href="http://www.cython.org/" rel="nofollow">Cython</a>, which is a set of C-extensions for Python. I don't have much knowledge on Python, can anyone tell me why Go is better/worse than Cython?</p>
<p>Best regards,</p>
<p>Miguel Rentes</p>
http://stackoverflow.com/questions/1738845/python-and-iphone-development-on-mac-minimum-recommended-hardware0Python and iPhone development on Mac - minimum/recommended hardware ?Laurent Luce2009-11-15T21:12:24Z2009-11-15T21:25:50Z
<p>What is the minimum configuration to do some Python and iPhone development on Mac ?</p>
<ul>
<li>Platform wise: Mac Mini, Mac Pro, Mac Book, Mac Book Pro ?</li>
<li>Memory requirement</li>
<li>CPU speed</li>
</ul>
<p>Thanks for your advice.</p>
<p>Laurent</p>
http://stackoverflow.com/questions/1633342/advice-on-set-up-management-of-the-wsgi-stack0Advice on set-up/management of the WSGI stack?Phillip Oldham2009-10-27T20:05:52Z2009-11-14T01:09:07Z
<p>After looking through the many useful and shiny Python frameworks, I find none of them get close to what I need or provide <em>way</em> more than my needs. I'm looking to put something together myself; could define it as a framework, but not full-stack. However, I can't find online what the Python community sees as the correct/standard way to manage WSGI middleware in an application.</p>
<p>I'm not looking for framework suggestions, unless its to provide an example of ways to manage WSGI middleware. Nor am I looking for information on how to get a webserver to talk to python -- that bit I understand.</p>
<p>Rather, I'm looking for advice on how one tells python what components/middleware to put into the stack, and in which order. For instance, if I wanted to use:<br />
<code>Spawning-->memento-->AuthKit-->(?)-->MyApp</code><br />
how would I get those components into the right order, and how would I configure an additional item (say Routes) before <code>MyApp</code>?</p>
<p>So; Can you advise on the common/correct/standard way of managing what middleware is included in a WSGI stack for a Python application?</p>
<p><strong>Edit</strong><br />
Thanks to Michael Dillon for recommending <a href="http://pythonpaste.org/do-it-yourself-framework.html" rel="nofollow">A Do-It-Yourself Framework</a>, which helps highlight my problem. The <a href="http://pythonpaste.org/do-it-yourself-framework.html#give-me-more-middleware" rel="nofollow">middleware section</a> of that document states that one should wrap middleware A in middleware B, B in C, and so-on:</p>
<pre><code>app = ObjectPublisher(Root())
wrapped_app = AuthMiddleware(app)
from paste.evalexception import EvalException
exc_wrapped_app = EvalException(wrapped_app)
</code></pre>
<p>Which shows how to do it in a very simple way. I understand how this works, however it seems too simple when working with a number of middleware packages.</p>
<p><strong>Is there a better way to manage how these middleware components are added to the stack? Maybe a common design pattern which reads from a config file?</strong></p>
http://stackoverflow.com/questions/1712888/what-is-your-opinion-on-google-go1What is your opinion on google go? [closed]Rick J2009-11-11T03:50:37Z2009-11-11T17:55:19Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1712172/whats-your-take-on-go-the-language-not-the-game">What’s your take on Go (the language, not the game)?</a> </p>
</blockquote>
<p>Google has just revealed a new language called <a href="http://golang.org/" rel="nofollow">Go</a> that claims to combine the performance of C++ with the ease of development of dynamic languages like python.</p>
<p>What is your opinion on this language? Do we need yet another language?</p>
http://stackoverflow.com/questions/150043/python-v-perl33Python v. PerlDanny2008-09-29T18:39:42Z2009-11-10T10:56:53Z
<p>Okay, so I'm finally making the jump into scripting languages and I have decided to focus on either Python or Perl. The problem is: I don't know which to cut my teeth on.</p>
<p>Most of my programming experience is in C, Java, and C++. There's no specific task I would be learning Python/Perl for, other that possibly applying it to my dev work to make life easier in general.</p>
<p>What do you think? Which do you use? Is one more industry relevant than another?</p>
http://stackoverflow.com/questions/1029917/what-is-your-wishlist-for-python-3-2-or-python-3-x5What is your wishlist for Python 3.2 (or Python 3.x)?ilya n.2009-06-22T23:35:36Z2009-11-08T21:02:34Z
<p>I've just read the <a href="http://docs.python.org/dev/py3k/whatsnew/3.1.html" rel="nofollow">What's New in Python 3.1</a> text (and I like many things). What's your idea of the thing that didn't go there but you would like to see in the future Python versions?</p>
<p>This is a community wiki.</p>
http://stackoverflow.com/questions/179904/what-is-matlab-good-for-why-is-it-so-used-by-universities-when-is-it-better-tha12What is MATLAB good for? Why is it so used by universities? When is it better than Python?Andrea Ambu2008-10-07T19:11:46Z2009-11-08T12:30:45Z
<p>I've been recently asked to learn some MATLAB basics for a class.</p>
<p>What does make it so cool for researchers and people that works in university?
I saw it's cool to work with matrices and plotting things... (things that can be done easily in Python using some libraries).</p>
<p>Writing a function or parsing a file is just painful. I'm still at the start, what am I missing?</p>
<p>In the "real" world, what should I think to use it for? When should it can do better than Python? For better I mean: easy way to write something performing.</p>
<p><hr /></p>
<p><strong>UPDATE 1:</strong> One of the things I'd like to know the most is "Am I missing something?" :D</p>
<p><strong>UPDATE 2:</strong> Thank you for your answers. My question is not about buy or not to buy MATLAB. The university has the possibility to give me a copy of an old version of MATLAB (MATLAB 5 I guess) for free, without breaking the license. I'm interested in its capabilities and if it deserves a deeper study (I won't need anything more than <em>basic</em> MATLAB in oder to pass the exam :P ) it will really be better than Python for a specific kind of task in the real world.</p>
http://stackoverflow.com/questions/1172173/is-pythonce-good-6Is PythonCE Good? [closed]Nathan Campos2009-07-23T14:31:48Z2009-11-06T19:35:44Z
<p>Hello,</p>
<p>I was looking on the internet for <em>PythonCE</em> and I want to know if it is any good? Because I don't know if i can install plug-ins on it like twitter. Thanks!</p>
http://stackoverflow.com/questions/1670499/experience-with-django10Experience with Djangoakosch2009-11-03T22:17:45Z2009-11-04T12:59:38Z
<p>Having read some great things about the <a href="http://www.djangoproject.com/" rel="nofollow">Django framework</a> I'm becoming quite interested in it. But before making my decision to use it for a small project I would like to hear some more down to earth opinions: Please write of your experience with the framework beyond the usual "toy" website and how well it compares generally with other major web frameworks (ASP.NET, RoR, etc.)</p>
http://stackoverflow.com/questions/132734/presentations-on-switching-from-perl-to-python1Presentations on switching from Perl to Pythoneliben2008-09-25T11:31:52Z2009-10-29T22:34:48Z
<p>Short story:</p>
<p>I'm looking for presentations/good articles on switching from Perl to Python.</p>
<p>Longer story:</p>
<p>I'm a programmer / embedded hardware engineer in a hardware design group. A few years ago I've convinced my co-workers to use Perl for scripting (instead of a weird mixture of batch files, Excel, Matlab and TCL). Since then, I myself have switched from Perl to Python and am very happy about the change. I want to somehow convince my coworkers to follow my path, but I need good points to convince them. These can't be heavy programmer voodoo like better reflection facilities (unlike myself, most people here are EE graduates and not programmers). </p>
<p>Any ideas ? Good articles / presentations on the topic ? Perhaps someone has already done it and can share tips.</p>
<p>Note:</p>
<p><a href="http://stackoverflow.com/questions/132310/why-do-you-like-python">This thread</a> is somewhat on the same topic, but not quite fits my requirements.</p>
http://stackoverflow.com/questions/135029/what-ide-would-you-recommend-for-python-development2What IDE would you recommend for Python development?Rui Vieira2008-09-25T18:23:06Z2009-10-28T05:24:39Z
<p>Why was looking for something that included many of the common modern-day tools, such as:</p>
<ul>
<li>Code refactoring</li>
<li>Code navigation</li>
<li>Debugger</li>
<li>etc...</li>
</ul>
http://stackoverflow.com/questions/1624570/gui-multithreading-support-regex-support-which-language-java-python-rub1GUI + multithreading support + regex support. Which language? JAVA / Python / Ruby ?? Abhijit2009-10-26T12:38:54Z2009-10-27T22:00:12Z
<p>I'm interested in learning a programming language with support for GUI, multithreading and easy test manipulation (support for regex).</p>
<p>Mainly on Windows but preferably cross-platform. What does the Stack Overflow community suggest?</p>
http://stackoverflow.com/questions/602096/do-many-python-libraries-have-relatively-low-code-quality12Do many Python libraries have relatively low code quality?nikow2009-03-02T12:11:56Z2009-10-23T17:53:22Z
<p>I have this somewhat heretic question: Why do so many Python libraries have low code quality? Or do you think that this observation is absolutely not true? How does the situation compare to other languages? I am interested in your take on this.</p>
<p><em>Some reasons why I have the impression that code quality is lacking:</em></p>
<ul>
<li><p>The docstrings are often completely missing or incomplete, even for the public API (e.g. in numpy). It is painful when a method takes <code>*args</code> and <code>**kwargs</code> but does not document which values can be given.</p></li>
<li><p>Bad Python coding practices, like adding new attributes outside of <code>__init__</code>. Things like this make the code hard to read (or to maintain).</p></li>
<li><p>Hardly any libraries follow the <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP8</a> coding conventions. Sometimes the conventions are not even consistent with the same file of a library (e.g. I saw this in <a href="http://matplotlib.sourceforge.net/" rel="nofollow">matplotlib</a>).</p></li>
<li><p>The overall design seems to be messy, but due to the lack of documentation I find this hard to judge. But it seems that not nearly enough refactoring is done.</p></li>
<li><p>Poor unittest coverage.</p></li>
</ul>
<p>Don't get me wrong, <em>I absolutely love Python and its ecosystem</em>. And even though I struggled with these libraries <em>they generally get the job done and I am grateful for that</em>. But I also think that in the end tons of developer time are wasted because of these issues. Java code for example seems to be much better on average (based on my limited experience). Maybe that is because <em>Python gives you so much freedom that it is very easy to write bad code</em>.</p>
<p>Please don't just tell me that the libraries are open source and that I therefore should not complain. I contribute to an open source Python project myself, as much as I can. Open source programmers generally care about their code, because it is a subject of personal pride. But the perceived low code quality is a big hurdle for future contributors.</p>
<p><strong>Edit:</strong> I really don't intend to express my "superiority" with this question. It is just that I try to learn and improve my programming. And I find that most of the things I learn make me more effective (like unittests). So I wonder why the experienced programmers writing these libraries do not follow the advice that is given to programming novices. Is it because they are so good that they can afford to cut corners?</p>
http://stackoverflow.com/questions/714242/opinions-on-unladen-swallow17Opinions on Unladen Swallow?vartec2009-04-03T14:46:30Z2009-10-22T18:06:03Z
<p>What are your opinions and expectations on <a href="http://code.google.com/p/unladen-swallow/wiki/ProjectPlan" rel="nofollow">Google's Unladen Swallow</a>? From their project plan:</p>
<blockquote>
<p>We want to make Python faster, but we
also want to make it easy for large,
well-established applications to
switch to Unladen Swallow.</p>
<ol>
<li>Produce a version of Python at least 5x faster than CPython.</li>
<li>Python application performance should be stable.</li>
<li>Maintain source-level compatibility with CPython
applications.</li>
<li>Maintain source-level compatibility with CPython extension
modules.</li>
<li>We do not want to maintain a Python implementation forever; we view
our work as a branch, not a fork. </li>
</ol>
</blockquote>
<p>And even sweeter:</p>
<blockquote>
<p>In addition, we intend to remove the
GIL and fix the state of
multithreading in Python. We believe
this is possible through the
implementation of a more sophisticated
GC</p>
</blockquote>
<p>It almost looks too good to be true, like the best of PyPy and Stackless combined. </p>
<p>More info:</p>
<ul>
<li>Jesse Noller: <a href="http://jessenoller.com/2009/03/26/pycon-unladen-swallow/" rel="nofollow">"Pycon: Unladen-Swallow"</a></li>
<li>ArsTechnica: <a href="http://arstechnica.com/open-source/news/2009/03/google-launches-project-to-boost-python-performance-by-5x.ars" rel="nofollow">"Google searches for holy grail of Python performance"</a></li>
</ul>
<p>Update: as DNS pointed out, there was related question: <a href="http://stackoverflow.com/questions/695370/what-is-llvm-and-how-is-replacing-python-vm-with-llvm-increasing-speeds-5x">http://stackoverflow.com/questions/695370/what-is-llvm-and-how-is-replacing-python-vm-with-llvm-increasing-speeds-5x</a></p>