Skip to content

Monthly Archives: March 2008

Python TAP Improved

For some inexplicable reason, the Python TAP Module is incomplete. Being that module is the best thing to happen to the best language of all time, it seems impossible, but it’s true. As I use the module, I have been needed to make some obvious improvements. I have posted these below for your enjoyment.

Enjoy!

  • Edward

This is my updated init.py:

import sys
import atexit

class Plan(object): def init(self, plan, param=None): self.counter = 0 self.expected_tests = None

Fix DokuWiki’s default syntax

DokuWiki is a terrific wiki, except that it removes line breaks for no fathomable reason. Fortunately, there’s a plugin that fixes the problem.

Tags and Branches in Subversion

I found a great article explaining tags and branches in version control. Every developer should use source control (such as SVN) for every project, and the tag and branch system is a good idea for any project. Enjoy!

  • Edward