id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
4,Truncating division and Guido van Rossum's Python 3000 Google Video,emuller,somebody,"Just watching Guido van Rossum's [http://video.google.com/videoplay?docid=-6459339159268485356 Talk on Python 3000] at Google Video ...

Did you ever notice this:

{{{
#!python
3/4 = 0

3.0/4 = 0.75

3//4 = 0

3.0//4 = 0.0
}}}

This behavior I find better:

{{{
#!python
from __future__ import division

3/4 = 0.75

3//4 = 0

3.0/4 = 0.75

3.0//4 = 0.0
}}}

I didn't know '//' was unambiguous truncating division ... nice.
Of course '%' returns the remainder.",defect,new,major,,component1,,,,
