1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #29959 -- Cached GEOS version in WKBWriter class.

Regression in f185d929fa.
This commit is contained in:
Claude Paroz
2018-11-16 15:10:33 +01:00
committed by Tim Graham
parent 97cec6f75d
commit e7e5505902
4 changed files with 13 additions and 4 deletions

View File

@@ -12,3 +12,7 @@ Bugfixes
* Corrected the default password list that ``CommonPasswordValidator`` uses by
lowercasing all passwords to match the format expected by the validator
(:ticket:`29952`).
* Prevented repetitive calls to ``geos_version_tuple()`` in the ``WKBWriter``
class in an attempt to fix a random crash involving ``LooseVersion``
(:ticket:`29959`).