Lacking Rhoticity
Saturday, 18 April 2009
Python variable binding semantics, part 2
›
Time for me to follow up my previous blog post and explain the code snippets. Snippet 1 funcs = [] for x in (1, 2, 3): funcs.append...
5 comments:
Tuesday, 31 March 2009
Python variable binding semantics
›
What do the six following chunks of code do, and what would you like them to do? Which do you prefer? funcs = [] for x in (1, 2, 3): ...
1 comment:
Sunday, 22 February 2009
OpenStreetMap
›
I tried out OpenStreetMap the other day after reading the recent article about it on LWN . Amazingly it looks pretty complete for the part...
Friday, 16 January 2009
Testing using golden files in Python
›
This is the third post in a series about automated testing in Python (earlier posts: 1 , 2 ). This post is about testing using golden files....
1 comment:
Sunday, 11 January 2009
On ABI and API compatibility
›
If you are going to create a new execution environment, such as a new OS, it can make things simpler if it presents the same interfaces as a...
1 comment:
Sunday, 4 January 2009
What does NaCl mean for Plash?
›
Google's Native Client (NaCl) , announced last month , is an ingenious hack to get around the problem that existing OSes don't provi...
3 comments:
Wednesday, 17 December 2008
Helper for monkey patching in tests
›
Following on from my post on TempDirTestCase , here is another Python test case helper which I introduced at work. Our codebase has quite a...
6 comments:
‹
›
Home
View web version