Author facundobatista
Recipients facundobatista, marketdickinson, phd
Date 2008-03-25.15:51:08
SpamBayes Score 0.122416
Marked as misclassified No
Message-id <1206460269.31.0.866325135242.issue2482@psf.upfronthosting.co.za>
In-reply-to
Content
Decimal needs to grow something like the following near the top of the
module:

try:
  _bytes = bytes
except NameError: # 2.5 or earlier
  _bytes = str

and then use _bytes instead of str as appropriate throughout the rest of
the module.

This will solve the actual problem, and scales well with 2.6 and 3k.
History
Date User Action Args
2008-03-25 15:51:09facundobatistasetspambayes_score: 0.122416 -> 0.122416
recipients: + facundobatista, phd, marketdickinson
2008-03-25 15:51:09facundobatistasetspambayes_score: 0.122416 -> 0.122416
messageid: <1206460269.31.0.866325135242.issue2482@psf.upfronthosting.co.za>
2008-03-25 15:51:08facundobatistalinkissue2482 messages
2008-03-25 15:51:08facundobatistacreate