Python conference 2007 starts tomorrow

Python conference 2007 starts tomorrow


To me, Python represents the quintessential free software programming language: its central design values are the ones that are most import for the free software community—clarity and pragmatism. Yes, I’m sure other people have their own pet languages, but Python is definitely my favorite.

The language derives much of its core syntax from a teaching language (you know the sort of language that is created just for students, so it won't confuse them with real-world problems, but generally never gets out of the classroom?) called “ABC”, but it has acquired so much from the lessons of other language designs that it is also one of the most “pragmatic” and full-featured languages available. This combination of a short learning curve and extreme reach makes Python an ideal language for leveraging the help of users in designing software—because its design features are the ones that make such part-time user/developer programmers more productive. In other words, it’s “of, by, and for free software development”.

It has been maligned as “just a scripting language” by people taking note of its simplicity and ease of development (in fact, it is pretty good for scripting), but missing its real capabilities. It's been dismissed as “interpreted” and therefore “slow”, by people who’ve unfortunately not seen the importance of selective optimization and the real design of modern interpreters.

However, the truth is that Python has most of the might of Java’s object-oriented design model, minus almost all of the baggage. Sure, battles rage between advocates on the mailing lists about whether Python meets the purist definition of an “object-oriented language” (a definition which was created with the specific languages C++ and Java in mind, so can't really be called unbiased). But the truth is that the main difference is that Python recognizes the limits of control that can be placed on programmers.

For example, Java and C++ programmers long ago learned ways to defeat those languages’ strong encapsulation. Python designers figured that such locks should just be privacy locks: you see this in the way that private and public methods and attributes are handled in Python (by obfuscation using Python’s beloved “__” characters, rather than with declarations).

More interestingly, the convention among most Python APIs is that it’s perfectly all right to use attributes directly. None of this “getters and setters” nonsense to clutter up the code. Java programmers typically balk at this because they’ve been taught from day one that that is bad “object-oriented” style. What they apparently weren’t taught is that in fact it’s only bad because of a design problem in C++ and Java: methods can’t be made to look like attributes, so once you use an attribute directly, you can’t adapt to a new implementation where the attribute has to be computed. Python solved this problem at the source, by creating “properties”: a design element which provides a computed-attribute interface. Voila! Encapsulation, without the boilerplate.

The criticism about speed and being “interpreted” is particularly amusing when it comes from Java programmers. It turns out that in almost all import respects, Java and Python are identical in how they are interpreted. Both actually use just-in-time compilation strategies and interpret “bytecode” on a “virtual machine”. There are still various differences in performance, and neither language is right for writing low-level graphics drivers or others things which C is better at anyway. One thing Python does have going for it in that respect, is that it is particularly easy to interface it to C libraries.

The number of such design stories is huge. There are lots of battles over which syntax for representing a certain idea should make it into the language, and occasionally syntax which was “considered harmful” will get pulled. The important thing though, is not the specific design decisions, but rather the criteria used to distinguish them:

  • Do they make the language clearer for the reader to understand?
  • Do they demonstrate a clear “best practice” (“one obvious way to do it”) so that a plethora of competing and confusing alternatives don't get in the reader or programmer’s way?
  • Do they allow you to get the job done, without cluttering up your code or making it harder to understand?
  • Do they avoid encouraging bad coding habits which will get in the way of someone trying to modify your code?

These ideals may well be useful inside of a commercial proprietary software development firm, but it’s obvious where they came from. These are the assumptions of the bazaar development arena, where the methods of choice are “extreme programming” and “design by test” and where users, developers, and user-developers blend smoothly into one another, work closely together, and all for the goal of creating code that they can understand, use, modify, and redistribute their improvements on.

You don’t have to use Python to write free software and you don’t have to write free software to use Python, but in both cases, it sure does help!

In the next few days, I’ll be sharing my experiences from one of the biggest world Python events: PyCON 2007, held conveniently right here in Dallas (which is why I can attend!). And this year, I'm bringing a decent camera!

Category: 

Comments

Anonymous visitor's picture
Submitted by Anonymous visitor (not verified) on

The criticism about speed and being “interpreted” is particularly amusing when it comes from Java programmers. It turns out that in almost all import respects, Java and Python are identical in how they are interpreted. Both actually use just-in-time compilation strategies and interpret “bytecode” on a “virtual machine”

Are you sure about that, I've recently trying to find if CPython does just-in-time-compilation, but nothing.

There are lots of battles over which syntax for representing a certain idea should make it into the language, and occasionally syntax which was “considered harmful” will get pulled. The important thing though, is not the specific design decisions, but rather the criteria used to distinguish them:

* Do they make the language clearer for the reader to understand?
* Do they demonstrate a clear “best practice” (“one obvious way to do it”) so that a plethora of competing and confusing alternatives don't get in the reader or programmer’s way?
* Do they allow you to get the job done, without cluttering up your code or making it harder to understand?
* Do they avoid encouraging bad coding habits which will get in the way of someone trying to modify your code?

That is in part our (programmers) job too, it's a 50% and 50% thing I believe.

cheers

Arkaino

Terry Hancock's picture

This is a little complicated to answer. CPython decides when to compile source code to byte code, and interprets the latter. It does not interpret the actual source text, except on the first pass after it has been edited. Full compilation (to native machine code) is not done by the current CPython interpreter.

So yeah, I may be using the term too broadly. However, there are tools like Psyco that do provide some compilation to native code, and the new “Python in Python” (PyPy) implementation will do true JIT compilation.

Author information

Terry Hancock's picture

Biography

Terry Hancock is co-owner and technical officer of Anansi Spaceworks. Currently he is working on a free-culture animated series project about space development, called Lunatics as well helping out with the Morevna Project.

Most forwarded

Interview with Dave Mohyla, of DTIDATA

Dave Mohyla is the president and founder of dtidata.com, a hard drive recovery facility based in Tampa, Florida.

TM: Where are you based? What does your company do?
DTI Data recovery is based in South Pasadena, Florida which is a suburb of Tampa. We have been here for over 10 years. We operate a bio-metrically secured class 100 clean room where we perform hard drive recovery on all types of hard disks, from laptop hard drives to multi drive RAID systems.

Anybody up to writing good directory software?

Since the very beginning, directories (of any kind) have had a very central role in the internet. (I have recently grown fond of Free Web Directory. Even Slashdot can be considered a directory: a collection of great news and invaluable user-generated comments. As far as software is concerned, doing a quick search on Google about software directories will return the free (as in freedom) software directories like Savannah, SourceForge, Freshmeat and so on, followed by shareware and freeware sites such as FileBuzz, PCWin Download Center and All Freeware (great if you're looking for shareware and freeware, but definitely less comprehensive than their free-as-in-freedom counterparts).

Interview with Mark Shuttleworth

Mark Shuttleworth is the founder of Thawte, the first Certification Authority to sell public SSL certificates. After selling Thawte to Verisign, Mark moved on to training as an astronaut in Russia and visiting space. Once he got back he founded Ubuntu, the leading GNU/Linux distribution. He agreed on releasing a quick interview to Free Software Magazine.

Is better education the key to finding better software?

I read David Jonathon's article Anybody Up To Writing Good Directory Software? the other day, which got me thinking about software directories in general. As David mentioned, many of the software directories one finds when doing a quick google search are free as in beer, not as in freedom. But what interests me is the software directories that already exist, providing a combination of both free as in beer software, and open source software. Sites such as Freeware Downloads and Shareware Download don't advertise themselves as providing free as in liberty software, but each of them have a good selection of open source software available... if you know where to look.

Most emailed

Free Open Document label templates

If you’ve ever spent hours at work doing mailings, cursed your printer for printing outside the lines on your labels, or moaned “There has got to be a better way to do this,” here’s the solution you’ve been looking for. Working smarter, not harder! Worldlabel.com, a manufacture of labels offers Open Office / Libre Office labels templates for downloading in ODF format which will save you time, effort, and (if you want) make really cool-looking labels

Creating a user-centric site in Drupal

A little while ago, while talking in the #drupal mailing list, I showed my latest creation to one of the core developers there. His reaction was "Wow, I am always surprised what people use Drupal for". His surprise is somehow justified: I did create a site for a bunch of entertainers in Perth, a company set to use Drupal to take over the world with Entertainers.Biz.

Update: since writing this article, I have updated the system so that the whole booking process happens online. I will update the article accordingly!

So, why, why do people and companies develop free software?

More and more people are discovering free software. Many people only do so after weeks, or even months, of using it. I wonder, for example, how many Firefox users actually know how free Firefox really is—many of them realise that you can get it for free, but find it hard to believe that anybody can modify it and even redistribute it legally.

When the discovery is made, the first instinct is to ask: why do they do it? Programming is hard work. Even though most (if not all) programmers are driven by their higher-than-normal IQs and their amazing passion for solving problems, it’s still hard to understand why so many of them would donate so much of their time to creating something that they can’t really show off to anybody but their colleagues or geek friends.

Sure, anybody can buy laptops, and just program. No need to get a full-on lab or spend thousands of dollars in equipment. But... is that the full story?

Fun articles

Santa Claus - the most successful open source project

It dawned on me the other day, as I was shopping for the dozens of gifts it seems I have to buy every December, that Santa Claus is the most successful open source project in history. (Bridget @ Illiterarty would agree with that). Santa Claus is essentially a marketing development that is embodied by everyone who stuffs a sock, gives a gift, hosts a dinner or wishes Merry Christmas over the holiday season.

Most emailed

Editorial

When I first started thinking about Free Software Magazine, I was feeling enthusiastic about the dream. I had Dave, Gianluca, and Alan willing to help me, I had established members of the free software community willing to help me out, I had writers volunteering their time and energy for free, and I had a generous offer from OpenHosting for servers, all before I'd proved myself. There was a sense of excitement in the air, and I thought maybe, just maybe, I could make this work.

Free Software Magazine uses Apollo project management software and CRM for its everyday activities!