i've opened a ticket for a small issue in module
django.contrib.gis.measure

the MeasureBase class cannot be subclassed easily, so i've write a new
MeasureBase class to allow developers to implement other Measure class
(like weight, currency and so on)

the code it's here

https://code.djangoproject.com/ticket/17754

with this class you can do some stuffs like this

class Weight(MeasureBase):
    UNITS = {
}

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to