Python conference 2007 starts tomorrow
- 2007-02-22
-
Write a full post in response to this!
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!
Write a full post in response to this!
Similar articles
Do you like this post?
Vote for it!
Copyright information
This entry is (C) Copyright by its author, 2004-2008. Unless a different license is specified in the entry's body, the following license applies: "Verbatim copying and distribution of this entire article is permitted in any medium without royalty provided this notice is preserved and appropriate attribution information (author, original site, original URL) is included".
Biography
Terry Hancock: Terry Hancock is co-owner and technical officer of Anansi Spaceworks, dedicated to the application of free software methods to the development of space.
- Terry Hancock's posts
- Login or register to post comments
- 1608 reads
- Printer friendly version (unavailable!)




Best voted contents
-
The Bizarre Cathedral - 1
Ryan Cartwright, 2008-04-18 -
Interview with Kurt Denke, the man who shut "Monster Cable" up
Tony Mobily, 2008-04-17 -
Google App Engine: Is it evil?
Terry Hancock, 2008-04-24 -
Programming languages and "lock-in"
Terry Hancock, 2008-04-18
Similar entries
Buzz authors
All news
- Ask Linux.com: Prepping for updates, GRUB versus LILO, and forum tools
- SCO wants more time to exclusively file a reorganization plan
- Meet Karl Paetzel, HP marketing manager for Linux and open source (video)
- Review: Hardy Heron converts an Ubuntu skeptic
- Ubuntu Open Week unites community and developers
From the FSM staff...
- The Top 10 Everything (Dave). The good, the bad and the ugly.
- Free Software news (Dave & Bridget). A site about short stories and writing.
- Book Reviews: Illiterarty (Bridget). Book reviews, blogs, and short stories.
Hot topics - last 60 days
-
Installing an all-in-one printer device in Debian
Ryan Cartwright, 2008-05-05 -
What is the free software community?
Tony Mobily, 2008-03-29 -
Things you miss with GNU/Linux
Ryan Cartwright, 2008-05-01 -
Why Microsoft should not lose (and free software will still win)
Ryan Cartwright, 2008-04-21 -
How do you replace Microsoft Outlook? Groupware applications
Ryan Cartwright, 2008-03-20
Hot topics - last 21 days
-
Installing an all-in-one printer device in Debian
Ryan Cartwright, 2008-05-05 -
Things you miss with GNU/Linux
Ryan Cartwright, 2008-05-01 -
Why Microsoft should not lose (and free software will still win)
Ryan Cartwright, 2008-04-21 -
Digital Rights Management (DRM): is it in its death throes?
Gary Richmond, 2008-05-07
Dedicated server
first comment ??
Submitted by Anonymous visitor on Fri, 2007-02-23 04:25.
Vote!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
"Just In Time" compiling
Submitted by Terry Hancock on Sat, 2007-02-24 06:11.
Vote!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.