Happy Birthday Sqizit!

Today is exactly 2 years since my first blog post on sqizit.bartletts.id.au. To celebrate, here’s some highlights and history from Sqizit.

Highlights

History

Statistics

Total posts: 46
Average time between posts: 16.24 days
Post length distribution: 15 short, 24 midlength, 7 long
Most common tags:

Posted in short | Tagged , , , | 9 Comments

Something Fishy with Python ASTs

Ok, so far so good. Now comes the interesting bit.

When you parse an AST with a __future__ import, it looks as if it stores some hidden flags that suppress this error. These flags, if they exist, are clearly not pickled. No amount of Python introspection has revealed these flags to me.

Yes, I know, Python’s source code is available, so it shouldn’t be too hard to find out if such flags exist. A 15 minute poke around the CPython source code hasn’t cleared up the mystery for me. At a glance, it looks as if the compile() function just investigates the AST it’s given in order to find the line after which __future__ imports are invalid, but that doesn’t explain the behaviour above.

Another day I will figure this one out (unless a friendly Python code dev wants to post a comment explaining it to me?).

Update: (2012-03-21) with the help of a coworker during a lunch hour, I’ve narrowed the problem down to pickle.loads() returning non-interned strings. The function future_parse() in future.c compares the module of the ImportFrom to the interned string '__future__'. The workaround is to explicitly set node.module = '__future__', which will use the interned string. When I get a chance I might get the latest version of Python and see if this issue still occurs there. The problem definitely occurs in Python 3.2.2 and Python 2.7.2.

Update 2: (2012-04-03) I identified the issue and created a ticket on the Python issue tracker. It has since been fixed in Python 3.2.4 and Python 2.7.4. My favourite comment on the issue was “After this commit the buildbots are dying randomly with segfaults.”

Posted in short | Tagged , , | 12 Comments

Twisted + Pygame the Easy Way

I’ve put together a Python package called fibre. It provides helpers to make it easy to write asynchronous applications. It uses Twisted under the hood.

I’ve also made a package called fibre.ui. It adds user interface support using pygame.

One of my main aims has been code readability. See if you can figure out what this snippet from the demo program does:

The entry_point() function saves you from spelling out the __name__ == '__main__' incantation, and also initialises all the pygame and Twisted stuff. (If this is too magic for you, you can call run_application() which doesn’t do any stack magic.)

When yield is used, control is returned to the reactor until the given asynchronous function is finished (technically until the deferred fires, but for basic use of fibre you don’t have to know much about deferreds).

The code above comes with the following class definition for the menu. See if you can figure out what it means.

(Yes, there’s some magic in there behind the scenes. But I’ve almost convinced myself it’s worth it for the sake of readability.)

You may be wondering why colours are being specified as strings. You could also specify them as (R, G, B) or (R, G, B, A) tuples, but using the strings allows you to set up colour schemes. Here’s the relevant code:

By this stage I’ve shown you almost all of the code of the example, so I might as well show you the last little bit. This bit bounces a ball around until you press escape.

Hopefully this code is all clear enough that you can read through it and easily tell what it’s meant to do. After all, that was the aim of the exercise.

Is It Complete?

At time of writing, I can still think of billions of things that could be added to fibre.ui. So far it’s got enough stuff to write a ball bounce demo program in it, but I shall be improving it over time.

Can I Play With It?

The fibre module is licensed under version 2 of the GPL and is available on PyPI. Go forth and play!

Posted in midlength | Tagged , , , , | Comments Off on Twisted + Pygame the Easy Way

Subclass ’em Functions

Quick Summary

I’ve got a simple Python helper class, in the talljosh package, that lets you write things that behave as functions but can be extended by subclassing.

But Why?

Consider the following Python function, found in json/encoder.py in the standard library:

Nested functions can be very useful for simple examples like this, but they don’t allow much flexibility. I can’t come along and say “I want to do exactly the same, but with a different dictionary for escaping. If the code author wanted to allow that, he’d have to do something like this:

But you can’t expect coders to parameterise every function in this way. It makes the code noisy and makes it hard to understand what’s typical usage.

One of the principles of Python programming is that those using your code are consenting adults. They don’t need to be treated like children. And therefore in Python you never worry about controlling access to methods or functions—you assume your user is grown-up enough to know what they’re doing, even if it’s not what you intended them to do.

Unfortunately, nested functions are hard to introspect, and very hard to extend.

What Then?

I’ve written a base class called Function which helps alleviate this problem.

To the casual user, this function behaves exactly the same as the original: you call it in the same way. Calling it will create an instance, and call the run() method. But it has the advantage of being extensible. I can subclass it and override ESCAPE, or ESCAPE_DCT, or even override replace().

How Does it Work?

The Function base class is very simple. (I stripped out the 22 lines of docstring for this post.)

By defining the __new__ method in this way, Function subclasses behave like normal functions when called. This means that users don’t have to type encode_basestring().run(s), but can simply call encode_basestring(s) and get the result.

The metaclass definition is only necessary so that you can use Function subclasses as methods. For example:

Notice that the methods inside the Function receive the running Function as self, and the enclosing MyClass instance as their second parameter.

In order for this to work, the metaclass looks like this:

This is descriptor magic, and is a topic for another day.

Where can I get it?

The talljosh package is licensed under version 2 of the GPL. If you accept the license, you can get it from the Python Package Index.

Posted in midlength | Tagged , , , | 1 Comment

Again: Broadcom Wireless BCM43224, Ubuntu

Update 2013-02-27: This solution on Ask Ubuntu is much better, because it includes properly packaged things that should update when you upgrade Ubuntu.

Update 2012-10-24: The patch is no longer available on Broadcom’s website, but it can be found here. Also, you may also need this patch now too.

Once again, I find that my Broadcom wireless card is not working. I don’t know how long this has been going on—I’m normally wired.

Mode of Failure

I have no wireless. Wireless is not displayed under Network Manager. My wireless card does not have an associated interface. iwconfig shows this:

$ iwconfig lo no wireless extensions. eth0 no wireless extensions. 

Also, lshw shows *-network UNCLAIMED for the wireless card.

Solution

I tried rebuilding the driver provided by Broadcom. The build succeeded, but modprobe wl still failed like so:

$ sudo modprobe wl FATAL: Module wl not found. FATAL: Error running install command for wl 

But the .ko file existed at the correct place:

$ locate wl.ko /lib/modules/3.0.0-12-generic/kernel/drivers/net/wireless/wl.ko . . 

Finally, I found a solution here. By running sudo depmod -a, I could then sudo modprobe wl and my wireless started working again.

I don’t know if it was necessary for me to get the latest drivers from Broadcom or if the version Ubuntu packaged would have worked. But my wireless is working again now.

Posted in short | Tagged , , , , | 4 Comments