2013/2/21 Guido Trotter <[email protected]>: > Mmm, looking at this again: how can I use it in this case? I can't put > the "if" before the class definition.
Why not? > and the whole class shouldn't be > there unless it's python 2.4... I guess I can change it to test > nothing on 2.4 and below […] Ack, you can just say “if python >= 2.5: self.assert…”. Michael
