We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e2864 commit 62b6304Copy full SHA for 62b6304
ChangeLog
@@ -1,3 +1,4 @@
1
+ * Raise country code counter from 251 to 253 ( Boris Zentner )
2
!! record_by_addr and record_by_name return None instead of throwing a
3
exception. See test_city.py ( Boris Zentner )
4
* Add a py_geoip.error Exception object. (Boris Zentner)
py_GeoIP.c
@@ -316,7 +316,7 @@ initGeoIP(void)
316
PyGeoIPError = PyErr_NewException("py_geoip.error", NULL, NULL);
317
PyDict_SetItemString(d, "error", PyGeoIPError);
318
319
- int total_ccodes = 251;
+ int total_ccodes = 253;
320
321
PyObject *ccode = PyTuple_New(total_ccodes);
322
PyObject *cname = PyDict_New();
0 commit comments