#17066: Exception TypeError when using GeoIP
------------------------+------------------------------------
     Reporter:  mitar   |                    Owner:  nobody
         Type:  Bug     |                   Status:  new
    Component:  GIS     |                  Version:  1.4
     Severity:  Normal  |               Resolution:
     Keywords:          |             Triage Stage:  Accepted
    Has patch:  0       |      Needs documentation:  0
  Needs tests:  0       |  Patch needs improvement:  0
Easy pickings:  0       |                    UI/UX:  0
------------------------+------------------------------------
Changes (by stefanw):

 * status:  closed => new
 * cc: stefanw (added)
 * resolution:  needsinfo =>


Comment:

 I can confirm this on Django 1.4.3 with geoip 1.4.8.

 I attached a test project that should reproduce this error. Instructions:
 Extract, install requirements (Django==1.4.3) and run `runtest.sh` which
 downloads GeoIP country data (slightly too big to attach) and then does a
 `syncdb` (any Django command will do).

 The exception should be the last line of the output. The culprit is
 obviously in `django.contrib.gis.geoip.base.GeoIP.__del__` where
 `GeoIP_delete` is None when this method is called.

 Replacing `__del__` with the following removes the exception, but may
 leave file handles lying around (I have no deeper knowledge about that).

 {{{
 def __del__(self):
     # Cleaning any GeoIP file handles lying around.
     if GeoIP_delete is None:
         return
     if self._country: GeoIP_delete(self._country)
     if self._city: GeoIP_delete(self._city)
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/17066#comment:7>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to